1 | <?php |
||
11 | class Moo_EditableFieldLiteral extends Moo_EditableField |
||
12 | { |
||
13 | private static $singular_name = 'HTML Block'; |
||
14 | private static $plural_name = 'HTML Blocks'; |
||
15 | |||
16 | /** |
||
17 | * List of allowed custom settings fields. |
||
18 | * |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $customSettingsFields = [ |
||
22 | 'Content', |
||
23 | ]; |
||
24 | |||
25 | /** |
||
26 | * Get extra configuration fields. |
||
27 | * |
||
28 | * @return array |
||
29 | */ |
||
30 | public function getFieldConfiguration() |
||
44 | |||
45 | 1 | protected function initFormField() |
|
55 | } |
||
56 |