Class EntityContext
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.
Property Summary
-
$_context protected
array
Context data for this object.
-
$_isCollection protected
bool
Boolean to track whether or not the entity is a collection.
-
$_request protected
Cake\Network\Request
The request object.
-
$_rootName protected
string
The name of the top level entity/table object.
-
$_tables protected
array
A dictionary of tables
Method Summary
-
__construct() public
Constructor.
-
_extractMultiple() 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
-
_getProp() protected
Read property values or traverse arrays/iterators.
-
_getTable() protected
Get the table instance from a property path
-
_getValidator() protected
Get the validator associated to an entity based on naming conventions.
-
_prepare() protected
Prepare some additional data from the context.
-
attributes() public
Get an associative array of other attributes for a field name.
-
entity() public
Fetch the leaf entity for the given path.
-
error() public
Get the errors for a given field
-
fieldNames() public
Get the field names from the top level entity.
-
hasError() public
Check whether or not a field has an error attached to it
-
isCreate() public
Check whether or not this form is a create or update.
-
isPrimaryKey() public
Returns true if the passed field name is part of the primary key for this context
-
isRequired() public
Check if a field should be marked as required.
-
primaryKey() public
Get the primary key data for the context.
-
type() public
Get the abstract field type for a given field name.
-
val() public
Get the value for a given path.
Method Detail
__construct() ¶ public
__construct(Cake\Network\Request $request, array $context)
Constructor.
Parameters
-
Cake\Network\Request
$request The request object.
-
array
$context Context info.
_extractMultiple() ¶ protected
_extractMultiple(arrayTraversable $values, array $path): array
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
Parameters
-
arrayTraversable
$values The list from which to extract primary keys from
-
array
$path Each one of the parts in a path for a field name
Returns
array
_getProp() ¶ protected
_getProp(mixed $target, string $field): mixed
Read property values or traverse arrays/iterators.
Parameters
-
mixed
$target The entity/array/collection to fetch $field from.
-
string
$field The next field to fetch.
Returns
mixed
_getTable() ¶ protected
_getTable(array $parts, bool $rootFallback = true): Cake\ORM\Table|bool
Get the table instance from a property path
Parameters
-
array
$parts Each one of the parts in a path for a field name
-
bool
$rootFallback optional Whether or not to fallback to the root entity.
Returns
Cake\ORM\Table|bool
_getValidator() ¶ protected
_getValidator(array $parts): Cake\Validation\Validator
Get the validator associated to an entity based on naming conventions.
Parameters
-
array
$parts Each one of the parts in a path for a field name
Returns
Cake\Validation\Validator
_prepare() ¶ protected
_prepare(): void
Prepare some additional data from the context.
If the table option was provided to the constructor and it was a string, ORM\TableRegistry 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.
Returns
void
Throws
RuntimeException
When a table object cannot be located/inferred.
attributes() ¶ public
attributes(string $field): array
Get an associative array of other attributes for a field name.
Parameters
-
string
$field A dot separated path to get additional data on.
Returns
array
entity() ¶ public
entity(array|null $path = null): Cake\Datasource\EntityInterfaceTraversable|array|bool
Fetch the leaf entity for the given path.
This method will traverse the given path and find the leaf entity. If the path does not contain a leaf entity false will be returned.
Parameters
-
array|null
$path optional Each one of the parts in a path for a field name or null to get the entity passed in contructor context.
Returns
Cake\Datasource\EntityInterfaceTraversable|array|bool
Throws
RuntimeException
When properties cannot be read.
error() ¶ public
error(string $field): array
Get the errors for a given field
Parameters
-
string
$field A dot separated path to check errors on.
Returns
array
fieldNames() ¶ public
fieldNames(): array
Get the field names from the top level entity.
If the context is for an array of entities, the 0th index will be used.
Returns
array
hasError() ¶ public
hasError(string $field): bool
Check whether or not a field has an error attached to it
Parameters
-
string
$field A dot separated path to check errors on.
Returns
bool
isCreate() ¶ public
isCreate(): bool
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.
Returns
bool
isPrimaryKey() ¶ public
isPrimaryKey(string $field): bool
Returns true if the passed field name is part of the primary key for this context
Parameters
-
string
$field
Returns
bool
isRequired() ¶ public
isRequired(string $field): bool
Check if a field should be marked as required.
In this context class, this is simply defined by the 'required' array.
Parameters
-
string
$field The dot separated path to the field you want to check.
Returns
bool
primaryKey() ¶ public
primaryKey(): bool
Get the primary key data for the context.
Gets the primary key columns from the root entity's schema.
Returns
bool
type() ¶ public
type(string $field): null|string
Get the abstract field type for a given field name.
Parameters
-
string
$field A dot separated path to get a schema type for.
Returns
null|string
See Also
val() ¶ public
val(string $field): mixed
Get the value for a given path.
Traverses the entity data and finds the value for $path.
Parameters
-
string
$field The dot separated path to the value.
Returns
mixed