Пример #1
0
 /**
  * Carga la lista de eventos definidos desde el editor
  * @ignore 
  */
 protected function cargar_lista_eventos()
 {
     foreach ($this->_info_eventos as $info_evento) {
         $e = new toba_evento_usuario($info_evento, $this);
         $this->_eventos_usuario[$e->get_id()] = $e;
         //Lista de eventos
         $this->_eventos_usuario_utilizados[$e->get_id()] = $e;
         //Lista de utilizados
         if ($e->es_implicito()) {
             toba::logger()->debug($this->get_txt() . " IMPLICITO: " . $e->get_id(), 'toba');
             $this->_evento_implicito = $e;
         }
     }
 }