From 32eef4e0547cae0417fb706cee4984f48f27f0cb Mon Sep 17 00:00:00 2001 From: Nick Sagona Date: Mon, 18 Nov 2024 22:12:14 -0600 Subject: [PATCH] Update version, copyright, website and email --- .github/workflows/phpunit.yml | 2 +- CHANGELOG.md | 2 +- LICENSE.TXT | 2 +- README.md | 5 ++--- composer.json | 24 ++++++++++++------------ src/AclForm.php | 18 +++++++++--------- src/Element/AbstractElement.php | 16 ++++++++-------- src/Element/AbstractSelect.php | 16 ++++++++-------- src/Element/Button.php | 16 ++++++++-------- src/Element/CheckboxSet.php | 16 ++++++++-------- src/Element/ElementInterface.php | 16 ++++++++-------- src/Element/Exception.php | 16 ++++++++-------- src/Element/Input.php | 16 ++++++++-------- src/Element/Input/Button.php | 16 ++++++++-------- src/Element/Input/Captcha.php | 16 ++++++++-------- src/Element/Input/Checkbox.php | 16 ++++++++-------- src/Element/Input/Color.php | 16 ++++++++-------- src/Element/Input/Csrf.php | 16 ++++++++-------- src/Element/Input/Datalist.php | 16 ++++++++-------- src/Element/Input/Date.php | 16 ++++++++-------- src/Element/Input/DateTime.php | 16 ++++++++-------- src/Element/Input/DateTimeLocal.php | 16 ++++++++-------- src/Element/Input/Email.php | 16 ++++++++-------- src/Element/Input/Exception.php | 16 ++++++++-------- src/Element/Input/File.php | 16 ++++++++-------- src/Element/Input/Hidden.php | 16 ++++++++-------- src/Element/Input/Month.php | 16 ++++++++-------- src/Element/Input/Number.php | 16 ++++++++-------- src/Element/Input/Password.php | 16 ++++++++-------- src/Element/Input/Radio.php | 16 ++++++++-------- src/Element/Input/Range.php | 16 ++++++++-------- src/Element/Input/Reset.php | 16 ++++++++-------- src/Element/Input/Search.php | 16 ++++++++-------- src/Element/Input/Submit.php | 16 ++++++++-------- src/Element/Input/Tel.php | 16 ++++++++-------- src/Element/Input/Text.php | 16 ++++++++-------- src/Element/Input/Time.php | 16 ++++++++-------- src/Element/Input/Url.php | 16 ++++++++-------- src/Element/Input/Week.php | 16 ++++++++-------- src/Element/RadioSet.php | 16 ++++++++-------- src/Element/Select.php | 16 ++++++++-------- src/Element/Select/Exception.php | 16 ++++++++-------- src/Element/Select/Optgroup.php | 16 ++++++++-------- src/Element/Select/Option.php | 16 ++++++++-------- src/Element/SelectMultiple.php | 16 ++++++++-------- src/Element/Textarea.php | 16 ++++++++-------- src/Exception.php | 16 ++++++++-------- src/Fields.php | 16 ++++++++-------- src/Fieldset.php | 16 ++++++++-------- src/Form.php | 16 ++++++++-------- src/FormConfig.php | 18 +++++++++--------- src/FormInterface.php | 16 ++++++++-------- src/FormTrait.php | 18 +++++++++--------- src/FormValidator.php | 16 ++++++++-------- 54 files changed, 412 insertions(+), 413 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index ab7f22a..843223c 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: [ '8.1', '8.2' ] + php-versions: [ '8.2', '8.3' ] steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index e5795e7..32bda66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ CHANGELOG ========= -## 4.0.0 +## 4.2.0 * [UPDATED] Updated to a minimum of PHP 7.3 and PHPUnit 9.0. Migrated from TravisCI to GitHub Actions for CI. diff --git a/LICENSE.TXT b/LICENSE.TXT index d8b6beb..b0c45e2 100644 --- a/LICENSE.TXT +++ b/LICENSE.TXT @@ -1,6 +1,6 @@ BSD 3 Clause License -Copyright (c) 2009-2024, NOLA Interactive, LLC. +Copyright (c) 2009-2025, NOLA Interactive, LLC. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index 786bea6..cf445d8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ pop-form [![Build Status](https://github.com/popphp/pop-form/workflows/phpunit/badge.svg)](https://github.com/popphp/pop-form/actions) [![Coverage Status](http://cc.popphp.org/coverage.php?comp=pop-form)](http://cc.popphp.org/pop-form/) -[![Join the chat at https://popphp.slack.com](https://media.popphp.org/img/slack.svg)](https://popphp.slack.com) [![Join the chat at https://discord.gg/TZjgT74U7E](https://media.popphp.org/img/discord.svg)](https://discord.gg/TZjgT74U7E) * [Overview](#overview) @@ -32,7 +31,7 @@ as granular control over field validation. Features include: * Filtering * Dynamic field generation based on the fields of a database table -`pop-form`is a component of the [Pop PHP Framework](http://www.popphp.org/). +`pop-form`is a component of the [Pop PHP Framework](https://www.popphp.org/). [Top](#pop-form) @@ -46,7 +45,7 @@ Install `pop-form` using Composer. Or, require it in your composer.json file "require": { - "popphp/pop-form" : "^4.0.0" + "popphp/pop-form" : "^4.2.0" } [Top](#pop-form) diff --git a/composer.json b/composer.json index 1cd430b..72d2001 100644 --- a/composer.json +++ b/composer.json @@ -10,27 +10,27 @@ "pop", "pop php" ], - "homepage": "http://www.popphp.org/", + "homepage": "https://github.com/popphp/pop-form", "license": "BSD-3-Clause", "authors": [ { "name": "Nick Sagona", - "email": "dev@nolainteractive.com", - "homepage": "http://www.nolainteractive.com/" + "email": "dev@noladev.com", + "homepage": "https://www.popphp.org/" } ], "require": { - "php": ">=8.1.0", - "popphp/pop-acl": "^4.0.0", - "popphp/pop-dom": "^4.0.0", - "popphp/pop-filter": "^4.0.0", - "popphp/pop-utils": "^2.1.0", - "popphp/pop-validator": "^4.0.0", + "php": ">=8.2.0", + "popphp/pop-acl": "^4.1.0", + "popphp/pop-dom": "^4.0.3", + "popphp/pop-filter": "^4.0.1", + "popphp/pop-utils": "^2.1.2", + "popphp/pop-validator": "^4.1.1", "ext-simplexml": "*" }, "require-dev": { - "phpunit/phpunit": "^10.0.0", - "popphp/pop-db": "^6.5.0" + "phpunit/phpunit": "^11.0.0", + "popphp/pop-db": "^6.5.11" }, "suggest": { "popphp/pop-db": "To use the dynamic field generation based on database table columns", @@ -51,7 +51,7 @@ }, "extra": { "branch-alias": { - "dev-master": "4.0.x-dev" + "dev-master": "4.2.x-dev" } } } diff --git a/src/AclForm.php b/src/AclForm.php index 9730a52..9739b24 100644 --- a/src/AclForm.php +++ b/src/AclForm.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -22,10 +22,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class AclForm extends Form @@ -189,4 +189,4 @@ public function render(int $depth = 0, ?string $indent = null, bool $inner = fal return parent::render($depth, $indent, $inner); } -} \ No newline at end of file +} diff --git a/src/Element/AbstractElement.php b/src/Element/AbstractElement.php index 107cbc6..637c88b 100644 --- a/src/Element/AbstractElement.php +++ b/src/Element/AbstractElement.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -21,10 +21,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ abstract class AbstractElement extends Child implements ElementInterface { diff --git a/src/Element/AbstractSelect.php b/src/Element/AbstractSelect.php index bb9784b..4ae979e 100644 --- a/src/Element/AbstractSelect.php +++ b/src/Element/AbstractSelect.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ abstract class AbstractSelect extends AbstractElement diff --git a/src/Element/Button.php b/src/Element/Button.php index 5b49830..f2c1450 100644 --- a/src/Element/Button.php +++ b/src/Element/Button.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Button extends AbstractElement diff --git a/src/Element/CheckboxSet.php b/src/Element/CheckboxSet.php index a5ae8fc..b77899f 100644 --- a/src/Element/CheckboxSet.php +++ b/src/Element/CheckboxSet.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class CheckboxSet extends AbstractElement diff --git a/src/Element/ElementInterface.php b/src/Element/ElementInterface.php index 33e13eb..c1a2608 100644 --- a/src/Element/ElementInterface.php +++ b/src/Element/ElementInterface.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ interface ElementInterface { diff --git a/src/Element/Exception.php b/src/Element/Exception.php index 0004799..0c2ac3c 100644 --- a/src/Element/Exception.php +++ b/src/Element/Exception.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Exception extends \Exception {} diff --git a/src/Element/Input.php b/src/Element/Input.php index d93b1e9..c4613e5 100644 --- a/src/Element/Input.php +++ b/src/Element/Input.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Input extends AbstractElement diff --git a/src/Element/Input/Button.php b/src/Element/Input/Button.php index 600d9d4..5ae333f 100644 --- a/src/Element/Input/Button.php +++ b/src/Element/Input/Button.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Button extends Element\Input diff --git a/src/Element/Input/Captcha.php b/src/Element/Input/Captcha.php index d97d864..c30ce35 100644 --- a/src/Element/Input/Captcha.php +++ b/src/Element/Input/Captcha.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Captcha extends Text diff --git a/src/Element/Input/Checkbox.php b/src/Element/Input/Checkbox.php index 838cb80..367f622 100644 --- a/src/Element/Input/Checkbox.php +++ b/src/Element/Input/Checkbox.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Checkbox extends Element\Input diff --git a/src/Element/Input/Color.php b/src/Element/Input/Color.php index 7f0f029..4b497b5 100644 --- a/src/Element/Input/Color.php +++ b/src/Element/Input/Color.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Color extends Element\Input diff --git a/src/Element/Input/Csrf.php b/src/Element/Input/Csrf.php index 11a009b..2782ee1 100644 --- a/src/Element/Input/Csrf.php +++ b/src/Element/Input/Csrf.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Csrf extends Hidden diff --git a/src/Element/Input/Datalist.php b/src/Element/Input/Datalist.php index f2914b8..aa0f01f 100644 --- a/src/Element/Input/Datalist.php +++ b/src/Element/Input/Datalist.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Datalist extends Text diff --git a/src/Element/Input/Date.php b/src/Element/Input/Date.php index e9da840..ffd24c4 100644 --- a/src/Element/Input/Date.php +++ b/src/Element/Input/Date.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Date extends Element\Input diff --git a/src/Element/Input/DateTime.php b/src/Element/Input/DateTime.php index 8fe508b..bec478c 100644 --- a/src/Element/Input/DateTime.php +++ b/src/Element/Input/DateTime.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class DateTime extends Element\Input diff --git a/src/Element/Input/DateTimeLocal.php b/src/Element/Input/DateTimeLocal.php index 6343b97..e41feb2 100644 --- a/src/Element/Input/DateTimeLocal.php +++ b/src/Element/Input/DateTimeLocal.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class DateTimeLocal extends Element\Input diff --git a/src/Element/Input/Email.php b/src/Element/Input/Email.php index d5536bc..bcbed48 100644 --- a/src/Element/Input/Email.php +++ b/src/Element/Input/Email.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Email extends Element\Input diff --git a/src/Element/Input/Exception.php b/src/Element/Input/Exception.php index 0bacc9a..ca56ff7 100644 --- a/src/Element/Input/Exception.php +++ b/src/Element/Input/Exception.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Exception extends \Exception {} diff --git a/src/Element/Input/File.php b/src/Element/Input/File.php index ccfa026..a2229ea 100644 --- a/src/Element/Input/File.php +++ b/src/Element/Input/File.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class File extends Element\Input diff --git a/src/Element/Input/Hidden.php b/src/Element/Input/Hidden.php index fd93042..b455a70 100644 --- a/src/Element/Input/Hidden.php +++ b/src/Element/Input/Hidden.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Hidden extends Element\Input diff --git a/src/Element/Input/Month.php b/src/Element/Input/Month.php index ef693d8..f08e5ea 100644 --- a/src/Element/Input/Month.php +++ b/src/Element/Input/Month.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Month extends Element\Input diff --git a/src/Element/Input/Number.php b/src/Element/Input/Number.php index f6a765c..65408b1 100644 --- a/src/Element/Input/Number.php +++ b/src/Element/Input/Number.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Number extends Element\Input diff --git a/src/Element/Input/Password.php b/src/Element/Input/Password.php index 2772e48..524edf5 100644 --- a/src/Element/Input/Password.php +++ b/src/Element/Input/Password.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Password extends Element\Input diff --git a/src/Element/Input/Radio.php b/src/Element/Input/Radio.php index 97d2c37..959ba8c 100644 --- a/src/Element/Input/Radio.php +++ b/src/Element/Input/Radio.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Radio extends Element\Input diff --git a/src/Element/Input/Range.php b/src/Element/Input/Range.php index 3cabb4c..2a6c31d 100644 --- a/src/Element/Input/Range.php +++ b/src/Element/Input/Range.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Range extends Element\Input diff --git a/src/Element/Input/Reset.php b/src/Element/Input/Reset.php index b09a872..6866766 100644 --- a/src/Element/Input/Reset.php +++ b/src/Element/Input/Reset.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Reset extends Element\Input diff --git a/src/Element/Input/Search.php b/src/Element/Input/Search.php index ab40f77..cab1a67 100644 --- a/src/Element/Input/Search.php +++ b/src/Element/Input/Search.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Search extends Element\Input diff --git a/src/Element/Input/Submit.php b/src/Element/Input/Submit.php index 4712f3d..7dccab7 100644 --- a/src/Element/Input/Submit.php +++ b/src/Element/Input/Submit.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Submit extends Element\Input diff --git a/src/Element/Input/Tel.php b/src/Element/Input/Tel.php index 5d6dd4d..2128158 100644 --- a/src/Element/Input/Tel.php +++ b/src/Element/Input/Tel.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Tel extends Element\Input diff --git a/src/Element/Input/Text.php b/src/Element/Input/Text.php index 6b6fedf..5125109 100644 --- a/src/Element/Input/Text.php +++ b/src/Element/Input/Text.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Text extends Element\Input diff --git a/src/Element/Input/Time.php b/src/Element/Input/Time.php index de9fe38..b737290 100644 --- a/src/Element/Input/Time.php +++ b/src/Element/Input/Time.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Time extends Element\Input diff --git a/src/Element/Input/Url.php b/src/Element/Input/Url.php index d035582..3ac53f4 100644 --- a/src/Element/Input/Url.php +++ b/src/Element/Input/Url.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Url extends Element\Input diff --git a/src/Element/Input/Week.php b/src/Element/Input/Week.php index 857ff0a..e7e323e 100644 --- a/src/Element/Input/Week.php +++ b/src/Element/Input/Week.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Week extends Element\Input diff --git a/src/Element/RadioSet.php b/src/Element/RadioSet.php index a48fdb3..cd1847f 100644 --- a/src/Element/RadioSet.php +++ b/src/Element/RadioSet.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class RadioSet extends AbstractElement diff --git a/src/Element/Select.php b/src/Element/Select.php index 518f841..69d6041 100644 --- a/src/Element/Select.php +++ b/src/Element/Select.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Select extends AbstractSelect diff --git a/src/Element/Select/Exception.php b/src/Element/Select/Exception.php index f11f874..7504102 100644 --- a/src/Element/Select/Exception.php +++ b/src/Element/Select/Exception.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Exception extends \Exception {} diff --git a/src/Element/Select/Optgroup.php b/src/Element/Select/Optgroup.php index 1e3a27d..1ad55d7 100644 --- a/src/Element/Select/Optgroup.php +++ b/src/Element/Select/Optgroup.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Optgroup extends Child diff --git a/src/Element/Select/Option.php b/src/Element/Select/Option.php index 0c0b8b3..a731b97 100644 --- a/src/Element/Select/Option.php +++ b/src/Element/Select/Option.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Option extends Child diff --git a/src/Element/SelectMultiple.php b/src/Element/SelectMultiple.php index 596f1de..6a4d7ed 100644 --- a/src/Element/SelectMultiple.php +++ b/src/Element/SelectMultiple.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class SelectMultiple extends AbstractSelect diff --git a/src/Element/Textarea.php b/src/Element/Textarea.php index de072a8..952b266 100644 --- a/src/Element/Textarea.php +++ b/src/Element/Textarea.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Textarea extends AbstractElement diff --git a/src/Exception.php b/src/Exception.php index 3e8011e..4df32ae 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Exception extends \Exception {} diff --git a/src/Fields.php b/src/Fields.php index cbe749a..025f0f8 100644 --- a/src/Fields.php +++ b/src/Fields.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Fields { diff --git a/src/Fieldset.php b/src/Fieldset.php index 1f41c2b..71ada17 100644 --- a/src/Fieldset.php +++ b/src/Fieldset.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -22,10 +22,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Fieldset extends Child implements \ArrayAccess, \Countable, \IteratorAggregate diff --git a/src/Form.php b/src/Form.php index fe09bab..4c12e7b 100644 --- a/src/Form.php +++ b/src/Form.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -24,10 +24,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class Form extends Child implements FormInterface, \ArrayAccess, \Countable, \IteratorAggregate diff --git a/src/FormConfig.php b/src/FormConfig.php index 72cdf7b..7b04bca 100644 --- a/src/FormConfig.php +++ b/src/FormConfig.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -21,10 +21,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class FormConfig extends Utils\ArrayObject @@ -167,4 +167,4 @@ public function filterFieldsetConfig(): FormConfig return $this; } -} \ No newline at end of file +} diff --git a/src/FormInterface.php b/src/FormInterface.php index 268675d..e4ba064 100644 --- a/src/FormInterface.php +++ b/src/FormInterface.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,10 +20,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ interface FormInterface diff --git a/src/FormTrait.php b/src/FormTrait.php index 80b324b..c38ab99 100644 --- a/src/FormTrait.php +++ b/src/FormTrait.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -21,10 +21,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ trait FormTrait @@ -134,4 +134,4 @@ public function offsetUnset(mixed $offset): void $this->__unset($offset); } -} \ No newline at end of file +} diff --git a/src/FormValidator.php b/src/FormValidator.php index bc9104e..f4cd132 100644 --- a/src/FormValidator.php +++ b/src/FormValidator.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,10 +18,10 @@ * * @category Pop * @package Pop\Form - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License - * @version 4.0.0 + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License + * @version 4.2.0 */ class FormValidator implements FormInterface, \ArrayAccess, \Countable, \IteratorAggregate