35 lines
688 B
PHP
35 lines
688 B
PHP
<?php
|
|
/**
|
|
* @package Joomla.Site
|
|
* @subpackage com_foos
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
\defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
?>
|
|
|
|
<div data-test="foo-main">
|
|
|
|
<?php
|
|
if ($this->item->params->get('show_name')) {
|
|
if ($this->params->get('show_foo_name_label')) {
|
|
echo Text::_('COM_FOOS_NAME');
|
|
}
|
|
|
|
if ($this->item) {
|
|
echo $this->item->name;
|
|
} else {
|
|
echo '-';
|
|
}
|
|
}
|
|
|
|
echo $this->item->event->afterDisplayTitle;
|
|
echo $this->item->event->beforeDisplayContent;
|
|
echo $this->item->event->afterDisplayContent;
|
|
?>
|
|
|
|
</div>
|