| 1 | <?php |
||
| 15 | class WrapCurlyBracesViewHelper extends AbstractViewHelper |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Specifies whether the escaping interceptors should be disabled or enabled for the result of renderChildren() calls within this ViewHelper |
||
| 20 | * @see isChildrenEscapingEnabled() |
||
| 21 | * |
||
| 22 | * Note: If this is NULL the value of $this->escapingInterceptorEnabled is considered for backwards compatibility |
||
| 23 | * |
||
| 24 | * @var boolean |
||
| 25 | * @api |
||
| 26 | */ |
||
| 27 | protected $escapeChildren = false; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Specifies whether the escaping interceptors should be disabled or enabled for the render-result of this ViewHelper |
||
| 31 | * @see isOutputEscapingEnabled() |
||
| 32 | * |
||
| 33 | * @var boolean |
||
| 34 | * @api |
||
| 35 | */ |
||
| 36 | protected $escapeOutput = false; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function render() |
||
| 45 | |||
| 46 | } |