31 lines
600 B
PHP
31 lines
600 B
PHP
<?php
|
|
|
|
use Joomla\CMS\MVC\View\HtmlView;
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class ClubsViewMyClubs extends HtmlView
|
|
{
|
|
|
|
public function display($tpl = null)
|
|
{
|
|
// FIXME
|
|
$this->clubs = array();
|
|
|
|
$c = array();
|
|
$c['name'] = "Ein Test-Club";
|
|
$c['city'] = "Saarbrücken";
|
|
$c['id'] = 2;
|
|
$this->clubs[] = $c;
|
|
|
|
$c = array();
|
|
$c['name'] = "Ein zweiter Test-Club";
|
|
$c['city'] = "Saarlouis";
|
|
$c['id'] = 4;
|
|
$this->clubs[] = $c;
|
|
|
|
parent::display($tpl);
|
|
}
|
|
}
|