接口 WidgetInterface
输入小部件的接口。
命名空间: Cake\View\Widget
方法摘要
-
render() public
将 $data 转换为一个或多个 HTML 元素。
-
secureFields() public
返回需要为该小部件进行安全保护的字段列表。
方法详情
render() ¶ public
render(array<string, mixed> $data, Cake\View\Form\ContextInterface $context): string
将 $data 转换为一个或多个 HTML 元素。
参数
-
array<string, mixed>
$data 要呈现的数据。
-
Cake\View\Form\ContextInterface
$context 当前表单上下文。
返回
string
secureFields() ¶ public
secureFields(array<string, mixed> $data): list<string>
返回需要为该小部件进行安全保护的字段列表。
参数
-
array<string, mixed>
$data 要呈现的数据。
返回
list<string>