1 | <?php |
||
18 | class EditLinkViewHelper extends AbstractViewHelper |
||
19 | { |
||
20 | /** |
||
21 | * Specifies whether the escaping interceptors should be disabled or enabled for the result of renderChildren() calls within this ViewHelper. |
||
22 | * |
||
23 | * @see isChildrenEscapingEnabled() |
||
24 | * |
||
25 | * Note: If this is NULL the value of $this->escapingInterceptorEnabled is considered for backwards compatibility |
||
26 | * |
||
27 | * @var bool |
||
28 | * |
||
29 | * @api |
||
30 | */ |
||
31 | protected $escapeChildren = false; |
||
32 | |||
33 | /** |
||
34 | * Specifies whether the escaping interceptors should be disabled or enabled for the render-result of this ViewHelper. |
||
35 | * |
||
36 | * @see isOutputEscapingEnabled() |
||
37 | * |
||
38 | * @var bool |
||
39 | * |
||
40 | * @api |
||
41 | */ |
||
42 | protected $escapeOutput = false; |
||
43 | |||
44 | /** |
||
45 | * Init arguments |
||
46 | */ |
||
47 | public function initializeArguments() |
||
52 | |||
53 | /** |
||
54 | * Render a edit link for the backend preview. |
||
55 | * |
||
56 | * @return string |
||
57 | */ |
||
58 | public function render() |
||
67 | |||
68 | /** |
||
69 | * getModuleUrl. |
||
70 | * |
||
71 | * @param string $moduleName |
||
72 | * @param array $urlParameters |
||
73 | * |
||
74 | * @return string |
||
75 | */ |
||
76 | protected function getModuleUrl(string $moduleName, array $urlParameters) |
||
92 | } |
||
93 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.