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

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

Generate the content element
protected compile ( )
    protected function compile()
    {
        $link = '/articles/';
        $objArticle = $this->objArticle;
        if ($objArticle->inColumn != 'main') {
            $link .= $objArticle->inColumn . ':';
        }
        $link .= $objArticle->alias ?: $objArticle->id;
        $this->Template->href = $this->objParent->getFrontendUrl($link);
        // Clean the RTE output
        $this->Template->text = \StringUtil::toHtml5($objArticle->teaser);
        $this->Template->headline = $objArticle->title;
        $this->Template->readMore = \StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['readMore'], $objArticle->title));
        $this->Template->more = $GLOBALS['TL_LANG']['MSC']['more'];
    }
ContentTeaser