Pimcore\Model\Document\Tag\Input::frontend PHP Метод

frontend() публичный Метод

См. также: Document\Tag\TagInterface::frontend
public frontend ( ) : string
Результат string
    public function frontend()
    {
        $options = $this->getOptions();
        $text = $this->text;
        if (isset($options["htmlspecialchars"]) and $options["htmlspecialchars"] !== false) {
            $text = htmlspecialchars($this->text);
        }
        return $text;
    }