Contao\ContentCode::compile PHP Метод

compile() защищенный Метод

Generate the content element
protected compile ( )
    protected function compile()
    {
        if ($this->highlight == 'C#') {
            $this->highlight = 'csharp';
        } elseif ($this->highlight == 'C++') {
            $this->highlight = 'cpp';
        }
        $this->Template->code = htmlspecialchars($this->code);
        $this->Template->cssClass = strtolower($this->highlight) ?: 'nohighlight';
    }