2019-04-17 16:41:28 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Joomla\CMS\MVC\View\HtmlView;
|
|
|
|
use Joomla\CMS\Toolbar\ToolbarHelper;
|
|
|
|
|
|
|
|
// No direct access.
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
|
|
|
|
class ClubsViewClubs extends HtmlView
|
|
|
|
{
|
|
|
|
|
|
|
|
function display($tpl = null)
|
|
|
|
{
|
|
|
|
// $this->offers = ClubsOffer::loadOffers();
|
2019-05-20 13:02:04 +02:00
|
|
|
$this->clubs = ClubsClub::loadClubs();
|
2019-04-17 16:41:28 +02:00
|
|
|
|
|
|
|
ToolbarHelper::title('Club-Management - Clubs');
|
|
|
|
parent::display($tpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|