Issues (3936)

Classes/ViewHelpers/IsUrnViewHelper.php (2 issues)

1
<?php
2
namespace EWW\Dpf\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
class IsUrnViewHelper extends \TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper
18
{
19
    public function initializeArguments()
20
    {
21
        parent::initializeArguments();
22
23
        $this->registerArgument('value', 'string', '', true);
24
    }
25
26
    /**
27
     * @return string
28
     */
29
    public function render()
30
    {
31
        $value = $this->arguments['value'];
32
33
        if (strpos(strtolower($value), 'urn') === 0) {
34
            return TRUE;
0 ignored issues
show
Bug Best Practice introduced by
The expression return TRUE returns the type true which is incompatible with the documented return type string.
Loading history...
35
        }
36
        return FALSE;
0 ignored issues
show
Bug Best Practice introduced by
The expression return FALSE returns the type false which is incompatible with the documented return type string.
Loading history...
37
    }
38
39
}
40