1 | <?php |
||
5 | abstract class TemplatableField extends Field |
||
6 | { |
||
7 | /** @var string */ |
||
8 | protected $templateKey; |
||
9 | |||
10 | 9 | public function __construct($value, $model, string $templateKey = '') |
|
16 | |||
17 | 9 | protected function parseValue($value): string |
|
29 | |||
30 | 9 | protected function getTemplatePath(string $templateKey): string |
|
36 | |||
37 | 3 | protected function getNestingLevel(): string |
|
41 | } |
||
42 |