31 lines
600 B
PHP
31 lines
600 B
PHP
<?php
|
|
|
|
use Joomla\CMS\Toolbar\ToolbarHelper;
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
JLoader::register("ClubsControllerOffer", JPATH_ROOT . "/administrator/components/com_clubs/controllers/offer.php");
|
|
|
|
class ClubsViewOffer extends AbstractClubsViewSingle
|
|
{
|
|
function display($tpl = null)
|
|
{
|
|
ToolbarHelper::title('Club-Management - Angebot', 'file');
|
|
parent::display($tpl);
|
|
}
|
|
|
|
protected function getFactory()
|
|
{
|
|
return new CommonClubsModelFactoryOffer();
|
|
}
|
|
protected function getControllerName()
|
|
{
|
|
return 'offer';
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|