29 lines
807 B
PHP
29 lines
807 B
PHP
<?php
|
|
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\MVC\View\HtmlView;
|
|
use Joomla\CMS\Uri\Uri;
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class ClubsViewClubPlaces extends HtmlView
|
|
{
|
|
|
|
public function display($tpl = null)
|
|
{
|
|
// FIXME Insert code from DB
|
|
$this->clubid = 43;
|
|
$this->clubname = "Testclub";
|
|
|
|
$this->trainingPlaces = array();
|
|
$this->trainingPlaces[] = array('name'=>'Schule', 'street'=>'Straße', 'city'=>'SB', 'plz'=>'12345', 'placeid'=>12);
|
|
// $this->trainingPlaces[] = array('name'=>'Schule', 'street'=>'Straße', 'city'=>'SB', 'plz'=>'12345', 'placeid'=>14);
|
|
|
|
Factory::getDocument()->addStyleSheet(Uri::base(true) . "components/com_clubs/css/clubs.css");
|
|
|
|
parent::display($tpl);
|
|
}
|
|
|
|
}
|