Download the PHP package estasi/form without Composer
On this page you can find all versions of the php package estasi/form. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package form
Estasi From Plugin
Allows you to create chains of form fields, filter them,
and validate them using plug-ins: estasi/filter
and estasi/validator
.
Installation
To install with a composer:
Requirements
- PHP 7.4 or newer
- Data Structures:
composer require php-ds/php-ds
Polyfill is installed with the estasi/form package.
Usage
The following field attributes are created automatically if the corresponding validators
were set during class initialization (single, in a Estasi\Validator\Chain
, or for Estasi\Validator\Each
):
- name
- value (optional if the default value is set)
- required (optional, if the
\Estasi\Validator\Boolval
validator is set) - pattern (optional, if the
\Estasi\Validator\Regex
validator is set) - min (optional, if the
\Estasi\Validator\GreaterThan
validator is set) - max (optional, if the
\Estasi\Validator\LessThan
validator is set) - min and max (optional, if the
\Estasi\Validator\GreaterThan
and\Estasi\Validator\LessThan
or\Estasi\Validator\Between
validators is set) - minlength and maxlength (optional, if the
\Estasi\Validator\StringLength
validator is set) - step (optional, if the
\Estasi\Validator\Step
validator is set)
Basic usage
Create Form
Using for template
For use in templates we recommend converting field data to an array.
If the template engine allows, you can do without converting to an array and use Field objects to get all the same data via object methods.
Use for checking data received from an html form
Using an array of fields
It supports working with arrays of fields, such as "store_keywords[]". The default value for these fields should be "array" or "null".
Using with <select>
There is support for form fields of the <select>
type.
To do this when initializing the Field
pass the Select
object with the selection list.
If the default value matches one of the values in the list, the "selected" attribute is assigned to the value in the list.
License
All contents of this package are licensed under the BSD-3-Clause license.
All versions of form with dependencies
php-ds/php-ds Version dev-master
estasi/filter Version ^1.0
estasi/validator Version ^1.2
estasi/utility Version ^1.1
estasi/plugin-manager Version ^1.0