Seditio Source
Root |
./othercms/phpBB3/vendor/s9e/text-formatter/src/Plugins/HTMLEntities/Configurator.php
<?php

/**
* @package   s9e\TextFormatter
* @copyright Copyright (c) 2010-2021 The s9e authors
* @license   http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\TextFormatter\Plugins\HTMLEntities;

use
s9e\TextFormatter\Plugins\ConfiguratorBase;

class
Configurator extends ConfiguratorBase
{
   
/**
    * @var string Name of the attribute used by this plugin
    */
   
protected $attrName = 'char';

   
/**
    * {@inheritdoc}
    */
   
protected $quickMatch = '&';

   
/**
    * @var string Regexp that matches entities
    */
   
protected $regexp = '/&(?>[a-z]+|#(?>[0-9]+|x[0-9a-f]+));/i';

   
/**
    * @var string Name of the tag used by this plugin
    */
   
protected $tagName = 'HE';

   
/**
    * {@inheritdoc}
    */
   
protected function setUp()
    {
       
$tag = $this->configurator->tags->add($this->tagName);
       
$tag->attributes->add($this->attrName);
       
$tag->template
           
= '<xsl:value-of select="@' . htmlspecialchars($this->attrName) . '"/>';
    }
}