1
|
|
|
<?php |
2
|
|
|
namespace ApacheSolrForTypo3\Solr\ViewHelpers; |
3
|
|
|
|
4
|
|
|
/* |
5
|
|
|
* This file is part of the TYPO3 CMS project. |
6
|
|
|
* |
7
|
|
|
* It is free software; you can redistribute it and/or modify it under |
8
|
|
|
* the terms of the GNU General Public License, either version 2 |
9
|
|
|
* of the License, or any later version. |
10
|
|
|
* |
11
|
|
|
* For the full copyright and license information, please read the |
12
|
|
|
* LICENSE.txt file that was distributed with this source code. |
13
|
|
|
* |
14
|
|
|
* The TYPO3 project - inspiring people to share! |
15
|
|
|
*/ |
16
|
|
|
|
17
|
|
|
use TYPO3\CMS\Fluid\ViewHelpers\TranslateViewHelper as CoreTranslateViewHelper; |
18
|
|
|
use TYPO3\CMS\Fluid\Core\Rendering\RenderingContextInterface; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* Class TranslateViewHelper |
22
|
|
|
* |
23
|
|
|
* @author Frans Saris <[email protected]> |
24
|
|
|
* @author Timo Hund <[email protected]> |
25
|
|
|
* @package ApacheSolrForTypo3\Solr\ViewHelpers |
26
|
|
|
*/ |
27
|
|
|
class TranslateViewHelper extends CoreTranslateViewHelper |
28
|
|
|
{ |
29
|
|
|
/** |
30
|
|
|
* @var bool |
31
|
|
|
*/ |
32
|
|
|
protected $escapeChildren = true; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @var bool |
36
|
|
|
*/ |
37
|
|
|
protected $escapeOutput = false; |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* @param array $arguments |
41
|
|
|
* @param \Closure $renderChildrenClosure |
42
|
|
|
* @param RenderingContextInterface $renderingContext |
43
|
|
|
* @return string |
44
|
|
|
*/ |
45
|
27 |
|
public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext) |
46
|
|
|
{ |
47
|
27 |
|
$arguments['extensionName'] = $arguments['extensionName'] === null ? 'Solr' : $arguments['extensionName']; |
48
|
27 |
|
$result = parent::renderStatic($arguments, $renderChildrenClosure, $renderingContext); |
49
|
|
|
|
50
|
27 |
|
$result = self::replaceTranslationPrefixesWithAtWithStringMarker($result); |
51
|
27 |
|
if (trim($result) === '') { |
52
|
|
|
$result = $arguments['default'] !== null ? $arguments['default'] : $renderChildrenClosure(); |
53
|
|
|
} |
54
|
|
|
|
55
|
27 |
|
$result = vsprintf($result, $arguments['arguments']); |
56
|
27 |
|
return $result; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @param $result |
61
|
|
|
* @return mixed |
62
|
|
|
*/ |
63
|
27 |
|
protected static function replaceTranslationPrefixesWithAtWithStringMarker($result) |
64
|
|
|
{ |
65
|
27 |
|
if (strpos($result, '@') !== false) { |
66
|
22 |
|
$result = preg_replace('~\"?@[a-zA-Z]*\"?~', '%s', $result); |
67
|
|
|
} |
68
|
27 |
|
return $result; |
69
|
|
|
} |
70
|
|
|
} |
71
|
|
|
|