Completed
Push — rename-section-to-slot ( 4b29d6...85ee26 )
by Romain
13:26
created

RenderViewHelper::render()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 8
rs 9.4285
cc 2
eloc 4
nc 2
nop 0
1
<?php
2
/*
3
 * 2017 Romain CANON <[email protected]>
4
 *
5
 * This file is part of the TYPO3 Formz project.
6
 * It is free software; you can redistribute it and/or modify it
7
 * under the terms of the GNU General Public License, either
8
 * version 3 of the License, or any later version.
9
 *
10
 * For the full copyright and license information, see:
11
 * http://www.gnu.org/licenses/gpl-3.0.html
12
 */
13
14
namespace Romm\Formz\ViewHelpers\Slot;
15
16
use Romm\Formz\Core\Core;
17
use Romm\Formz\Exceptions\ContextNotFoundException;
18
use Romm\Formz\Service\ViewHelper\FieldViewHelperService;
19
use Romm\Formz\Service\ViewHelper\SlotViewHelperService;
20
use Romm\Formz\ViewHelpers\AbstractViewHelper;
21
use TYPO3\CMS\Fluid\Core\Rendering\RenderingContextInterface;
22
use TYPO3\CMS\Fluid\Core\ViewHelper\Facets\CompilableInterface;
23
24
/**
25
 * This is the rendering function for the `slot` view helper.
26
 *
27
 * @see \Romm\Formz\ViewHelpers\SlotViewHelper
28
 */
29
class RenderViewHelper extends AbstractViewHelper implements CompilableInterface
30
{
31
    /**
32
     * @var bool
33
     */
34
    protected $escapeOutput = false;
35
36
    /**
37
     * @var FieldViewHelperService
38
     */
39
    protected $fieldService;
40
41
    /**
42
     * @inheritdoc
43
     */
44
    public function initializeArguments()
45
    {
46
        $this->registerArgument('slot', 'string', 'Instance of the slot which will be rendered.', true);
47
    }
48
49
    /**
50
     * @inheritdoc
51
     */
52
    public function render()
53
    {
54
        if (false === $this->fieldService->fieldContextExists()) {
55
            throw ContextNotFoundException::slotRenderViewHelperFieldContextNotFound();
56
        }
57
58
        return self::renderStatic($this->arguments, $this->buildRenderChildrenClosure(), $this->renderingContext);
0 ignored issues
show
Compatibility introduced by
$this->renderingContext of type object<TYPO3Fluid\Fluid\...deringContextInterface> is not a sub-type of object<TYPO3\CMS\Fluid\C...deringContextInterface>. It seems like you assume a child interface of the interface TYPO3Fluid\Fluid\Core\Re...nderingContextInterface to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
59
    }
60
61
    /**
62
     * Will render the slot with the given name, only if the slot is found.
63
     *
64
     * @inheritdoc
65
     */
66
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
67
    {
68
        /** @var SlotViewHelperService $slotService */
69
        $slotService = Core::instantiate(SlotViewHelperService::class);
70
71
        $closure = $slotService->getSlotClosure($arguments['slot']);
72
73
        return (null !== $closure)
74
            ? $closure()
75
            : '';
76
    }
77
78
    /**
79
     * @param FieldViewHelperService $service
80
     */
81
    public function injectFieldService(FieldViewHelperService $service)
82
    {
83
        $this->fieldService = $service;
84
    }
85
}
86