| Total Complexity | 3 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class FrontendTemplateContainer extends SeomaticContainer |
||
| 22 | { |
||
| 23 | // Constants |
||
| 24 | // ========================================================================= |
||
| 25 | |||
| 26 | public const CONTAINER_TYPE = 'FrontendTemplateContainer'; |
||
| 27 | |||
| 28 | // Public Properties |
||
| 29 | // ========================================================================= |
||
| 30 | |||
| 31 | /** |
||
| 32 | * The FrontendTemplates in this container |
||
| 33 | * |
||
| 34 | * @var EditableTemplate[] $data |
||
| 35 | */ |
||
| 36 | public $data = []; |
||
| 37 | |||
| 38 | // Public Methods |
||
| 39 | // ========================================================================= |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @inheritdoc |
||
| 43 | */ |
||
| 44 | public function render(array $params = []): string |
||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @inheritdoc |
||
| 51 | */ |
||
| 52 | public function normalizeContainerData() |
||
| 62 |