Class FormContext
Provides a context provider for Cake\Form\Form instances.
This context provider simply fulfils the interface requirements that FormHelper has and allows access to the request data.
Property Summary
Method Summary
-
__construct() public
Constructor.
-
_schemaDefault() protected
Get default value from form schema for given field.
-
attributes() public
Get an associative array of other attributes for a field name.
-
error() public
Get the errors for a given field
-
fieldNames() public
Get the fieldnames of the top level object in this context.
-
getMaxLength() public
Get maximum length of a field from model validation
-
getRequiredMessage() public
Gets the default "required" error message for a field
-
hasError() public
Check whether or not a field has an error attached to it
-
isCreate() public
Returns whether or not this form is for a create operation.
-
isPrimaryKey() public
Returns true if the passed field name is part of the primary key for this context
-
isRequired() public
Check if a given field is 'required'.
-
primaryKey() public
Get the fields used in the context as a primary key.
-
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\Http\ServerRequest $request, array $context)
Constructor.
Parameters
-
Cake\Http\ServerRequest
$request The request object.
-
array
$context Context info.
_schemaDefault() ¶ protected
_schemaDefault(string $field): mixed
Get default value from form schema for given field.
Parameters
-
string
$field Field name.
Returns
mixed
attributes() ¶ public
attributes(string $field): array
Get an associative array of other attributes for a field name.
Parameters
-
string
$field
Returns
array
error() ¶ public
error(string $field): array
Get the errors for a given field
Parameters
-
string
$field
Returns
array
fieldNames() ¶ public
fieldNames(): string[]
Get the fieldnames of the top level object in this context.
Returns
string[]
getMaxLength() ¶ public
getMaxLength(mixed $field): int|null
Get maximum length of a field from model validation
Parameters
-
$field
Returns
int|null
getRequiredMessage() ¶ public
getRequiredMessage(mixed $field): string|null
Gets the default "required" error message for a field
Parameters
-
$field
Returns
string|null
hasError() ¶ public
hasError(string $field): bool
Check whether or not a field has an error attached to it
Parameters
-
string
$field
Returns
bool
isCreate() ¶ public
isCreate(): bool
Returns whether or not this form is for a create operation.
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 given field is 'required'.
In this context class, this is simply defined by the 'required' array.
Parameters
-
string
$field
Returns
bool
primaryKey() ¶ public
primaryKey(): array
Get the fields used in the context as a primary key.
Returns
array
type() ¶ public
type(string $field): string|null
Get the abstract field type for a given field name.
Parameters
-
string
$field
Returns
string|null
val() ¶ public
val(string $field, array $options = []): mixed
Get the value for a given path.
Traverses the request and form data and finds the value for $path.
Parameters
-
string
$field The dot separated path to the value.
-
array
$options optional options
Returns
mixed