1 | <?php |
||
28 | class HasViewHelper extends AbstractConditionViewHelper implements CompilableInterface |
||
29 | { |
||
30 | /** |
||
31 | * @var FieldViewHelperService |
||
32 | */ |
||
33 | protected $fieldService; |
||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | public function initializeArguments() |
||
42 | |||
43 | /** |
||
44 | * @inheritdoc |
||
45 | * |
||
46 | * @throws ContextNotFoundException |
||
47 | */ |
||
48 | protected function callRenderMethod() |
||
56 | |||
57 | /** |
||
58 | * @param array $arguments |
||
59 | * @return bool |
||
60 | */ |
||
61 | protected static function evaluateCondition($arguments = null) |
||
69 | |||
70 | /** |
||
71 | * @param FieldViewHelperService $service |
||
72 | */ |
||
73 | public function injectFieldService(FieldViewHelperService $service) |
||
77 | } |
||
78 |