Passed
Push — master ( c2c83c...eb4088 )
by Nathan
03:39
created

ActivateViewHelper::render()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 15
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 7
nc 2
nop 0
dl 0
loc 15
rs 10
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * Copyright (C) 2018
5
 * Nathan Boiron <[email protected]>
6
 * Romain Canon <[email protected]>
7
 *
8
 * This file is part of the TYPO3 NotiZ project.
9
 * It is free software; you can redistribute it and/or modify it
10
 * under the terms of the GNU General Public License, either
11
 * version 3 of the License, or any later version.
12
 *
13
 * For the full copyright and license information, see:
14
 * http://www.gnu.org/licenses/gpl-3.0.html
15
 */
16
17
namespace CuyZ\Notiz\ViewHelpers\Notification\Link;
18
19
use CuyZ\Notiz\Core\Definition\Tree\EventGroup\Event\EventDefinition;
20
use CuyZ\Notiz\Core\Notification\Activable;
21
use CuyZ\Notiz\Core\Notification\Notification;
22
use TYPO3\CMS\Fluid\Core\ViewHelper\AbstractTagBasedViewHelper;
23
24
class ActivateViewHelper extends AbstractTagBasedViewHelper
25
{
26
    /**
27
     * @var string
28
     */
29
    protected $tagName = 'a';
30
31
    /**
32
     * @inheritdoc
33
     */
34
    public function initializeArguments()
35
    {
36
        parent::initializeArguments();
37
38
        $this->registerUniversalTagAttributes();
39
40
        $this->registerArgument(
41
            'notification',
42
            Notification::class,
43
            '',
44
            true
45
        );
46
47
        $this->registerArgument(
48
            'eventDefinition',
49
            EventDefinition::class,
50
            ''
51
        );
52
    }
53
54
    /**
55
     * @inheritdoc
56
     */
57
    public function render()
58
    {
59
        /** @var Notification $notification */
60
        $notification = $this->arguments['notification'];
61
62
        if (!$notification instanceof Activable) {
63
            return '';
64
        }
65
66
        $uri = $notification->getSwitchActivationUri($this->arguments['eventDefinition']);
67
68
        $this->tag->addAttribute('href', $uri);
69
        $this->tag->setContent($this->renderChildren());
70
71
        return $this->tag->render();
72
    }
73
}
74