Файл: contao-3.5.8/system/modules/core/elements/ContentAlias.php
Строк: 61
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
namespace Contao;
/**
* Front end content element "alias".
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class ContentAlias extends ContentElement
{
/**
* Parse the template
*
* @return string
*/
public function generate()
{
$objElement = ContentModel::findByPk($this->cteAlias);
if ($objElement === null)
{
return '';
}
$strClass = static::findClass($objElement->type);
if (!class_exists($strClass))
{
return '';
}
$objElement->origId = $objElement->id;
$objElement->id = $this->id;
$objElement->typePrefix = 'ce_';
/** @var ContentElement $objElement */
$objElement = new $strClass($objElement);
// Overwrite spacing and CSS ID
$objElement->origSpace = $objElement->space;
$objElement->space = $this->space;
$objElement->origCssID = $objElement->cssID;
$objElement->cssID = $this->cssID;
return $objElement->generate();
}
/**
* Generate the content element
*/
protected function compile()
{
return;
}
}