Interface WidgetInterface
Interface for input widgets.
Namespace: Cake\View\Widget
Method Summary
-
render() public
Converts the $data into one or many HTML elements.
-
secureFields() public
Returns a list of fields that need to be secured for this widget. Fields are in the form of Model[field][suffix]
Method Detail
render() ¶ public
render(array $data, Cake\View\Form\ContextInterface $context): string
Converts the $data into one or many HTML elements.
Parameters
-
array
$data The data to render.
-
Cake\View\Form\ContextInterface
$context The current form context.
Returns
string
secureFields() ¶ public
secureFields(array $data): array
Returns a list of fields that need to be secured for this widget. Fields are in the form of Model[field][suffix]
Parameters
-
array
$data The data to render.
Returns
array