Exemplo n.º 1
0
 public function getNomEspai()
 {
     //Si l'espai és null ens quedem amb el nom que apareix a l'horari.
     $idE = $this->getEspaisEspaiid();
     if (is_null($idE)) {
         $OEE = EspaisExternsPeer::retrieveByPK($this->getIdespaiextern());
         if (!$OEE instanceof EspaisExterns) {
             return 'n/d';
         } else {
             return $OEE->getNom() . ' (' . $OEE->getPoblacions()->getNom() . ')';
         }
         //Sinó retornem el nom de l'espai que hi ha a la taula espais'
     } else {
         return $this->getEspais()->getNom();
     }
 }