Файл: contao-3.5.8/system/modules/core/elements/ContentSliderStop.php
Строк: 31
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
namespace Contao;
/**
* Front end content element "slider" (wrapper stop).
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class ContentSliderStop extends ContentElement
{
/**
* Template
* @var string
*/
protected $strTemplate = 'ce_slider_stop';
/**
* Generate the content element
*/
protected function compile()
{
if (TL_MODE == 'BE')
{
$this->strTemplate = 'be_wildcard';
/** @var BackendTemplate|object $objTemplate */
$objTemplate = new BackendTemplate($this->strTemplate);
$this->Template = $objTemplate;
}
// Previous and next labels
$this->Template->previous = $GLOBALS['TL_LANG']['MSC']['previous'];
$this->Template->next = $GLOBALS['TL_LANG']['MSC']['next'];
}
}