TViewHelper::renderStatic()   A
last analyzed

Complexity

Conditions 4
Paths 8

Size

Total Lines 17
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 4
eloc 9
c 2
b 0
f 0
nc 8
nop 3
dl 0
loc 17
rs 9.9666
1
<?php
2
declare(strict_types=1);
3
4
/*
5
 * Copyright (C)
6
 * Nathan Boiron <[email protected]>
7
 * Romain Canon <[email protected]>
8
 *
9
 * This file is part of the TYPO3 NotiZ project.
10
 * It is free software; you can redistribute it and/or modify it
11
 * under the terms of the GNU General Public License, either
12
 * version 3 of the License, or any later version.
13
 *
14
 * For the full copyright and license information, see:
15
 * http://www.gnu.org/licenses/gpl-3.0.html
16
 */
17
18
namespace CuyZ\Notiz\ViewHelpers;
19
20
use CuyZ\Notiz\Service\LocalizationService;
21
use CuyZ\Notiz\Service\StringService;
22
use TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper;
0 ignored issues
show
Bug introduced by
The type TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
23
use TYPO3\CMS\Fluid\Core\ViewHelper\Facets\CompilableInterface;
0 ignored issues
show
Bug introduced by
The type TYPO3\CMS\Fluid\Core\Vie...ets\CompilableInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
24
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
25
26
class TViewHelper extends AbstractViewHelper implements CompilableInterface
27
{
28
    /**
29
     * @var boolean
30
     */
31
    protected $escapeOutput = false;
32
33
    /**
34
     * @var boolean
35
     */
36
    protected $escapeChildren = false;
37
38
    /**
39
     * @inheritdoc
40
     */
41
    public function initializeArguments()
42
    {
43
        $this->registerArgument('key', 'string', 'The translation key');
44
        $this->registerArgument('args', 'array', 'Translation arguments');
45
        $this->registerArgument('wrapLines', 'bool', 'Wrap each line of the translated string into HTML p tags');
46
    }
47
48
    /**
49
     * @inheritdoc
50
     */
51
    public function render()
52
    {
53
        return self::renderStatic($this->arguments, $this->buildRenderChildrenClosure(), $this->renderingContext);
54
    }
55
56
    /**
57
     * @inheritdoc
58
     */
59
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
60
    {
61
        $key = isset($arguments['key'])
62
            ? $arguments['key']
63
            : $renderChildrenClosure();
64
65
        $args = isset($arguments['args'])
66
            ? $arguments['args']
67
            : [];
68
69
        $result = LocalizationService::localize($key, $args);
70
71
        if ($arguments['wrapLines']) {
72
            $result = StringService::get()->wrapLines($result);
0 ignored issues
show
Bug introduced by
It seems like wrapLines() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

72
            $result = StringService::get()->/** @scrutinizer ignore-call */ wrapLines($result);
Loading history...
73
        }
74
75
        return $result;
76
    }
77
}
78