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