コード例 #1
0
 function exportar_componentes_item($item)
 {
     //Primero verifico que el item existe
     if (toba_info_editores::existe_item($item, $this->get_id())) {
         $arbol = toba_info_editores::get_arbol_componentes_item($this->get_id(), $item);
         $this->manejador_interface->mensaje("Exportando componentes", false);
         foreach ($arbol as $componente) {
             $this->exportar_componente($componente['tipo'], $componente);
             $this->manejador_interface->progreso_avanzar();
         }
         $this->manejador_interface->progreso_fin();
     } else {
         throw new toba_error_def("No existe el item {$item} \n");
     }
 }