1 | <?php |
||
21 | class TemplateWidgetHandler extends TemplatingWidgetHandler |
||
22 | { |
||
23 | public const TEMPLATE_NAME = 'template_name'; |
||
24 | |||
25 | protected static $expectedParameters = [ |
||
26 | self::TEMPLATE_NAME => [ |
||
27 | 'type' => 'string', |
||
28 | ], |
||
29 | ]; |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function render() |
||
38 | } |
||
39 |