Файл: contao-3.5.8/system/modules/core/elements/ContentText.php
Строк: 38
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
namespace Contao;
/**
* Front end content element "text".
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class ContentText extends ContentElement
{
/**
* Template
* @var string
*/
protected $strTemplate = 'ce_text';
/**
* Generate the content element
*/
protected function compile()
{
/** @var PageModel $objPage */
global $objPage;
// Clean the RTE output
if ($objPage->outputFormat == 'xhtml')
{
$this->text = StringUtil::toXhtml($this->text);
}
else
{
$this->text = StringUtil::toHtml5($this->text);
}
// Add the static files URL to images
if (TL_FILES_URL != '')
{
$path = Config::get('uploadPath') . '/';
$this->text = str_replace(' src="' . $path, ' src="' . TL_FILES_URL . $path, $this->text);
}
$this->Template->text = StringUtil::encodeEmail($this->text);
$this->Template->addImage = false;
// Add an image
if ($this->addImage && $this->singleSRC != '')
{
$objModel = FilesModel::findByUuid($this->singleSRC);
if ($objModel === null)
{
if (!Validator::isUuid($this->singleSRC))
{
$this->Template->text = '<p class="error">'.$GLOBALS['TL_LANG']['ERR']['version2format'].'</p>';
}
}
elseif (is_file(TL_ROOT . '/' . $objModel->path))
{
$this->singleSRC = $objModel->path;
$this->addImageToTemplate($this->Template, $this->arrData);
}
}
}
}