| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-fluid/Classes/ViewHelpers/Format/ |
| Current File : //var/www/surf/TYPO3/vendor/typo3/cms-fluid/Classes/ViewHelpers/Format/HtmlentitiesViewHelper.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Fluid\ViewHelpers\Format;
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithContentArgumentAndRenderStatic;
/**
* Applies :php:`htmlentities()` escaping to a value.
* See https://www.php.net/manual/function.htmlentities.php.
*
* Examples
* ========
*
* Default notation
* ----------------
*
* ::
*
* <f:format.htmlentities>{text}</f:format.htmlentities>
*
* Text containing the following signs ``&`` ``"`` ``'`` ``<`` ``>`` will be processed by :php:`htmlentities()`.
* These will result in: ``&`` ``"`` ``'`` ``<`` ``>``.
*
* Inline notation
* ---------------
*
* ::
*
* {text -> f:format.htmlentities(encoding: 'ISO-8859-1')}
*
* Text containing the following signs ``&`` ``"`` ``'`` ``<`` ``>`` will be processed by :php:`htmlentities()`.
* These will result in: ``&`` ``"`` ``'`` ``<`` ``>``.
*
* But encoded as ISO-8859-1.
*/
final class HtmlentitiesViewHelper extends AbstractEncodingViewHelper
{
use CompileWithContentArgumentAndRenderStatic;
/**
* Output gets encoded by this viewhelper
*
* @var bool
*/
protected $escapeOutput = false;
/**
* This prevents double encoding as the whole output gets encoded at the end
*
* @var bool
*/
protected $escapeChildren = false;
public function initializeArguments(): void
{
$this->registerArgument('value', 'string', 'string to format');
$this->registerArgument('keepQuotes', 'bool', 'If TRUE, single and double quotes won\'t be replaced (sets ENT_NOQUOTES flag).', false, false);
$this->registerArgument('encoding', 'string', 'Define the encoding used when converting characters (Default: UTF-8');
$this->registerArgument('doubleEncode', 'bool', 'If FALSE existing html entities won\'t be encoded, the default is to convert everything.', false, true);
}
/**
* Escapes special characters with their escaped counterparts as needed using PHPs htmlentities() function.
*
* @see https://www.php.net/manual/function.htmlentities.php
* @return mixed
*/
public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
{
$value = $renderChildrenClosure();
$encoding = $arguments['encoding'];
$keepQuotes = $arguments['keepQuotes'];
$doubleEncode = $arguments['doubleEncode'];
if (!is_string($value) && !(is_object($value) && method_exists($value, '__toString'))) {
return $value;
}
if ($encoding === null) {
$encoding = self::resolveDefaultEncoding();
}
$flags = $keepQuotes ? ENT_NOQUOTES : ENT_QUOTES;
return htmlentities((string)$value, $flags, $encoding, $doubleEncode);
}
/**
* Explicitly set argument name to be used as content.
*/
public function resolveContentArgumentName(): string
{
return 'value';
}
}