Trait ViewVarsTrait
Provides the set() method for collecting template context.
Once collected context data can be passed to another object. This is done in Controller, TemplateTask and View for example.
Property Summary
-
$viewVars public
array
Variables for the view
Method Summary
-
createView() public
Constructs the view class instance based on object properties.
-
getView() public
Get view instance
-
set() public
Saves a variable or an associative array of variables for use inside a template.
-
viewOptions() public
Get/Set valid view options in the object's _validViewOptions property. The property is created as an empty array if it is not set. If called without any parameters it will return the current list of valid view options. See
createView()
.
Method Detail
createView() ¶ public
createView(string|null $viewClass = null): Cake\View\View
Constructs the view class instance based on object properties.
Parameters
-
string|null
$viewClass optional Optional namespaced class name of the View class to instantiate.
Returns
Cake\View\View
Throws
Cake\View\Exception\MissingViewException
If view class was not found.
getView() ¶ public
getView(string|null $viewClass = null): Cake\View\View
Get view instance
Parameters
-
string|null
$viewClass optional View class name or null to use $viewClass
Returns
Cake\View\View
Throws
Cake\View\Exception\MissingViewException
If view class was not found.
set() ¶ public
set(string|array $name, string|array|null $value = null): $this
Saves a variable or an associative array of variables for use inside a template.
Parameters
-
string|array
$name A string or an array of data.
-
string|array|null
$value optional Value in case $name is a string (which then works as the key). Unused if $name is an associative array, otherwise serves as the values to $name's keys.
Returns
$this
viewOptions() ¶ public
viewOptions(string|array|null $options = null, bool $merge = true): array
Get/Set valid view options in the object's _validViewOptions property. The property is
created as an empty array if it is not set. If called without any parameters it will
return the current list of valid view options. See createView()
.
Parameters
-
string|array|null
$options optional string or array of string to be appended to _validViewOptions.
-
bool
$merge optional Whether to merge with or override existing valid View options. Defaults to
true
.
Returns
array