public function getInfos() { $code = ''; $code .= gl('Du trou n°') . ' '; $code .= $this->starttee; $code .= gl(' à ') . ' '; $code .= showHeure($this->startheure); $code .= gl(' par ') . ' '; $code .= $this->interval; $code .= gl(' minutes '); $code .= gl(' sur ') . ' '; $code .= $this->parcour->nom; return $code; }
public function beforeCreate($id) { // Extend function create() // Format startheure (ex : 08:00) $this->dsp->var['param']['datas']['startheure'] = showHeure($this->dsp->var['param']['datas']['startheure']); // Nombre de joueurs (teams) dispo : Compet->maxjoueurs si création if ($this->dsp->var['param']['datas']['nbjoueurs'] == 0) { $this->dsp->var['param']['datas']['nbjoueurs'] = MySession::getModel('tour')->configDepartMaxPlace($id); } }