clubid = 43; $this->clubname = "Testclub"; $this->address = "Straße 1\n66123 Ort"; $this->contactperson = "Max Mustermann"; $this->email = "me@club.de"; $this->phone = "012345"; $this->internet = "http://wichtig.de"; $this->options = array("Step" => NULL, "JMD" => 1, "Divers." => NULL); $this->hasOptions = false; foreach($this->options as $o) if(isset($o)) { $this->hasOptions = true; break; } $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); $this->persons = array(); $this->persons[] = array('name'=>'Max', 'position'=>'Präsident', 'id'=>3, 'assoc'=>6, 'modify'=>true); $this->persons[] = array('name'=>'Max', 'position'=>'Präsident', 'id'=>3, 'assoc'=>7, 'modify'=>false); $this->canModify = true; Factory::getDocument()->addStyleSheet(Uri::base(true) . "components/com_clubs/css/clubs.css"); parent::display($tpl); } }