Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext) |
||
30 | { |
||
31 | $content = \trim($renderChildrenClosure()); |
||
32 | if (!empty($content)) { |
||
33 | $GLOBALS['TSFE']->altPageTitle = $content; |
||
34 | $GLOBALS['TSFE']->indexedDocTitle = $content; |
||
35 | } |
||
36 | |||
37 | return ''; |
||
38 | } |
||
39 | } |
||
40 |