Class Schema
Contains the schema information for Form instances.
Properties summary
- $_fieldDefaults protected
arrayThe default values for fields.
- $_fields protected
arrayThe fields in this schema.
Method Summary
Method Detail
__debugInfo() public
__debugInfo()
Get the printable version of this object
Returns
arrayaddField() public
addField(string $name, mixed $attrs)
Adds a field to the schema.
Parameters
-
string$name The field name.
-
string|array$attrs The attributes for the field, or the type as a string.
Returns
$thisaddFields() public
addFields(array $fields)
Add multiple fields to the schema.
Parameters
-
array$fields The fields to add.
Returns
$thisfield() public
field(string $name)
Get the attributes for a given field.
Parameters
-
string$name The field name.
Returns
array|nullThe attributes for a field, or null.
fieldType() public
fieldType(string $name)
Get the type of the named field.
Parameters
-
string$name The name of the field.
Returns
string|nullEither the field type or null if the field does not exist.
fields() public
fields()
Get the list of fields in the schema.
Returns
string[]The list of field names.
removeField() public
removeField(string $name)
Removes a field to the schema.
Parameters
-
string$name The field to remove.
Returns
$thisProperty Detail
$_fieldDefaults protected
The default values for fields.
Type
array$_fields protected
The fields in this schema.
Type
array
© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/4.1/class-Cake.Form.Schema.html