예제 #1
0
파일: evento.php 프로젝트: vinik/hplt
 function get_serie()
 {
     if (SIM == $this->get_idrepeticao() && NULL != $this->get_id_evento_pai()) {
         $evento = new Evento();
         $evento->set_id_evento_pai($this->get_id_evento_pai());
         $evento->set_deleted(NAO);
         return $evento->search();
     } else {
         return array();
     }
 }