Файл: contao-3.5.8/system/modules/core/elements/ContentArticle.php
Строк: 30
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
namespace Contao;
/**
* Front end content element "article alias".
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class ContentArticle extends ContentElement
{
/**
* Parse the template
*
* @return string
*/
public function generate()
{
return $this->getArticle($this->articleAlias, false, true);
}
/**
* Generate the content element
*/
protected function compile()
{
return;
}
}