Inserted basic structure for clubs and models

This commit is contained in:
2019-04-17 16:41:28 +02:00
parent b08b01689f
commit 893dc754f0
7 changed files with 788 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?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();
ToolbarHelper::title('Club-Management - Clubs');
parent::display($tpl);
}
}