forked from TYPO3/Fluid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpacelessViewHelper.php
57 lines (52 loc) · 1.34 KB
/
SpacelessViewHelper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
namespace TYPO3Fluid\Fluid\ViewHelpers;
/*
* This file belongs to the package "TYPO3 Fluid".
* See LICENSE.txt that was shipped with this package.
*/
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic;
/**
* Space Removal ViewHelper
*
* Removes redundant spaces between HTML tags while
* preserving the whitespace that may be inside HTML
* tags. Trims the final result before output.
*
* Heavily inspired by Twig's corresponding node type.
*
* <code title="Usage of f:spaceless">
* <f:spaceless>
* <div>
* <div>
* <div>text
*
* text</div>
* </div>
* </div>
* </code>
* <output>
* <div><div><div>text
*
* text</div></div></div>
* </output>
*/
class SpacelessViewHelper extends AbstractViewHelper
{
use CompileWithRenderStatic;
/**
* @var boolean
*/
protected $escapeOutput = false;
/**
* @param array $arguments
* @param \Closure $childClosure
* @param RenderingContextInterface $renderingContext
* @return string
*/
public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
{
return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
}
}