Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class MarkupElement extends BaseElement |
||
10 | { |
||
11 | private static $singular_name = 'Markup'; |
||
12 | private static $plural_name = 'Markup'; |
||
13 | private static $description = 'Adds arbitrary markup to a page'; |
||
14 | private static $table_name = 'DD_Elements_Markup'; |
||
15 | private static $icon = 'font-icon-p-code'; |
||
16 | private static $db = [ |
||
17 | 'Markup' => 'HTMLText' |
||
18 | ]; |
||
19 | |||
20 | public function getCMSFields() |
||
31 | } |
||
32 | |||
33 | public function getType() |
||
38 |