1 | <?php |
||
17 | abstract class AbstractPanel |
||
18 | { |
||
19 | use EscaperAwareTrait; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $label = ''; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $title = ''; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $dir = __DIR__; |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function getTab() |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function createIcon($name, $style = '') |
||
58 | |||
59 | /** |
||
60 | * @param $name |
||
61 | * @return string |
||
62 | */ |
||
63 | public function renderTemplate($name) |
||
70 | } |
||
71 |