當前位置: 首頁>>代碼示例>>PHP>>正文


PHP toba::fuente方法代碼示例

本文整理匯總了PHP中toba::fuente方法的典型用法代碼示例。如果您正苦於以下問題:PHP toba::fuente方法的具體用法?PHP toba::fuente怎麽用?PHP toba::fuente使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在toba的用法示例。


在下文中一共展示了toba::fuente方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: evt__cuadro__crear_auditoria

 function evt__cuadro__crear_auditoria($seleccion)
 {
     $this->s__seleccionado = $seleccion;
     $proyecto = $this->s__seleccionado['proyecto'];
     $manejador = $this->get_manejador($proyecto);
     $manejador->agregar_tablas();
     if (!$manejador->existe()) {
         $manejador->crear();
         $this->agregar_notificacion('Schema creado');
     } else {
         $manejador->migrar();
         $this->agregar_notificacion('Schema actualizado');
     }
     //Actualizo el flag en apex_fuente_tatos
     $id = toba_info_editores::get_fuente_datos_defecto($proyecto);
     $info = toba::proyecto($proyecto)->get_info_fuente_datos($id, $proyecto);
     $tiene_metadato = $info['tiene_auditoria'] == 1;
     if (!$tiene_metadato) {
         toba::fuente($id)->set_fuente_posee_auditoria(true);
     }
     unset($this->s__seleccionado);
 }
開發者ID:emma5021,項目名稱:toba,代碼行數:22,代碼來源:ci_conf_auditoria.php

示例2: evt__eliminar

 function evt__eliminar()
 {
     $datos = $this->datos('accesos')->get();
     if (toba::fuente()->usa_permisos_por_tabla()) {
         $this->actualizar_script_roles(array($datos['usuario_grupo_acc']));
     }
     $this->dep('datos')->persistidor()->desactivar_transaccion();
     toba::db()->abrir_transaccion();
     $this->dep('datos')->eliminar();
     $this->dep('datos')->resetear();
     //- Elimino el acceso a los items
     $sql = "DELETE FROM \n\t\t\t\t\tapex_usuario_grupo_acc_item \n\t\t\t\tWHERE \n\t\t\t\t\t\tusuario_grupo_acc = '{$datos['usuario_grupo_acc']}'\n\t\t\t\t\tAND proyecto = '{$datos['proyecto']}';";
     toba::db()->ejecutar($sql);
     toba::db()->cerrar_transaccion();
     //-- Si estamos en produccion guardamos un flag indicando que cambiaron los perfiles y ahora se encarga el proyecto de manejarlos
     $this->actualizar_info_ini();
     if (toba::fuente()->usa_permisos_por_tabla()) {
         $this->actualizar_script_roles();
     }
     $this->dep('editor_perfiles')->cortar_arbol();
     $this->set_pantalla('seleccion_perfil');
 }
開發者ID:emma5021,項目名稱:toba,代碼行數:22,代碼來源:ci_navegacion_perfiles.php


注:本文中的toba::fuente方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。