Provides a form context around a single entity and its relations. It also can be used as context around an array or iterator of entities.
This class lets FormHelper interface with entities or collections of entities.
Important Keys:
entity The entity this context is operating on.table Either the ORM\Table instance to fetch schema/validators from, an array of table instances in the case of a form spanning multiple entities, or the name(s) of the table. If this is null the table name(s) will be determined using naming conventions.validator Either the Validation\Validator to use, or the name of the validation method to call on the table object. For example 'default'. Defaults to 'default'. Can be an array of table alias=>validators when dealing with associated forms.$_context protected array$_isCollection protected booleanBoolean to track whether or not the entity is a collection.
$_request protected $_rootName protected string$_tables protected array$_validator protected Helper method used to extract all the primary key values out of an array, The primary key column is guessed out of the provided $path array
Get the validator associated to an entity based on naming conventions.
__construct( Cake\Http\ServerRequest $request , array $context )
Constructor.
Cake\Http\ServerRequest $request $context _extractMultiple( array|Traversable $values , array $path )
Helper method used to extract all the primary key values out of an array, The primary key column is guessed out of the provided $path array
$values $path _getProp( mixed $target , string $field )
Read property values or traverse arrays/iterators.
$target $field _getTable( array $parts , boolean $fallback = true )
Get the table instance from a property path
$parts $fallback optional true Whether or not to fallback to the last found table when a non-existent field/property is being encountered.
Cake\ORM\Table|boolean_getValidator( array $parts )
Get the validator associated to an entity based on naming conventions.
$parts Cake\Validation\Validator_prepare( )
Prepare some additional data from the context.
If the table option was provided to the constructor and it was a string, TableLocator will be used to get the correct table instance.
If an object is provided as the table option, it will be used as is.
If no table option is provided, the table name will be derived based on naming conventions. This inference will work with a number of common objects like arrays, Collection objects and ResultSets.
_schemaDefault( array $parts )
Get default value from table schema for given entity field.
$parts attributes( string $field )
Get an associative array of other attributes for a field name.
$field Cake\View\Form\ContextInterface::attributes() entity( array|null $path = null )
Fetch the entity or data value for a given path
This method will traverse the given path and find the entity or array value for a given path.
If you only want the terminal Entity for a path use leafEntity instead.
$path optional null Each one of the parts in a path for a field name or null to get the entity passed in constructor context.
Cake\Datasource\EntityInterface|Traversable|array|booleanerror( string $field )
Get the errors for a given field
$field Cake\View\Form\ContextInterface::error() fieldNames( )
Get the field names from the top level entity.
If the context is for an array of entities, the 0th index will be used.
Cake\View\Form\ContextInterface::fieldNames() getMaxLength( string $field )
Get field length from validation
$field getRequiredMessage( $field )
hasError( string $field )
Check whether or not a field has an error attached to it
$field Cake\View\Form\ContextInterface::hasError() isCreate( )
Check whether or not this form is a create or update.
If the context is for a single entity, the entity's isNew() method will be used. If isNew() returns null, a create operation will be assumed.
If the context is for a collection or array the first object in the collection will be used.
Cake\View\Form\ContextInterface::isCreate() isPrimaryKey( string $field )
Returns true if the passed field name is part of the primary key for this context
$field A dot separated path to the field a value is needed for.
Cake\View\Form\ContextInterface::isPrimaryKey() isRequired( string $field )
Check if a field should be marked as required.
$field Cake\View\Form\ContextInterface::isRequired() leafEntity( array|null $path = null )
Fetch the terminal or leaf entity for the given path.
Traverse the path until an entity cannot be found. Lists containing entities will be traversed if the first element contains an entity. Otherwise the containing Entity will be assumed to be the terminal one.
$path optional null Each one of the parts in a path for a field name or null to get the entity passed in constructor context.
primaryKey( )
Get the primary key data for the context.
Gets the primary key columns from the root entity's schema.
Cake\View\Form\ContextInterface::primaryKey() type( string $field )
Get the abstract field type for a given field name.
$field Cake\Database\TypeCake\View\Form\ContextInterface::type() val( string $field , array $options = [] )
Get the value for a given path.
Traverses the entity data and finds the value for $path.
$field $options optional [] Options: - default: Default value to return if no value found in request data or entity. - schemaDefault: Boolean indicating whether default value from table schema should be used if it's not explicitly provided.
Cake\View\Form\ContextInterface::val() getTableLocator( )
Gets the table locator.
Cake\ORM\Locator\LocatorInterfacesetTableLocator( Cake\ORM\Locator\LocatorInterface $tableLocator )
Sets the table locator.
Cake\ORM\Locator\LocatorInterface $tableLocator tableLocator( Cake\ORM\Locator\LocatorInterface $tableLocator = null )
Sets the table locator. If no parameters are passed, it will return the currently used locator.
Cake\ORM\Locator\LocatorInterface $tableLocator optional null Cake\ORM\Locator\LocatorInterfacegetMaxLength(), getRequiredMessage() |
protected boolean
Boolean to track whether or not the entity is a collection.
false
© 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/3.8/class-Cake.View.Form.EntityContext.html