当前位置: 首页>>代码示例>>PHP>>正文


PHP Persona::grabar方法代码示例

本文整理汇总了PHP中Persona::grabar方法的典型用法代码示例。如果您正苦于以下问题:PHP Persona::grabar方法的具体用法?PHP Persona::grabar怎么用?PHP Persona::grabar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Persona的用法示例。


在下文中一共展示了Persona::grabar方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: grabar

 public function grabar()
 {
     parent::grabar();
     $accion = $this->input->get_post('accion');
     $codigo_padre = $this->input->get_post('codigo_padre');
     $data = array("PERSP_Codigo" => $this->codigo, "CLIC_FechaModificacion" => date('Y-m-d H:i:s', time()), "CLIC_FlagEstado" => $this->input->post('estado'));
     if ($accion == "n") {
         $this->alumno_model->insertar($data);
     } elseif ($accion == "e") {
         $this->alumno_model->modificar($codigo_padre, $data);
     }
 }
开发者ID:ccjuantrujillo,项目名称:cepreadm,代码行数:12,代码来源:usuario_usuario_.php

示例2: grabar

 public function grabar()
 {
     $curso = $this->input->post('curso');
     if ($curso != 0) {
         parent::grabar();
         $accion = $this->input->get_post('accion');
         $codigo_padre = $this->input->get_post('codigo_padre');
         $codigo = $this->input->get_post('codigo');
         $user_id = $this->input->get_post('user_id');
         $data = array("PERSP_Codigo" => $this->codigo, "PROC_FechaModificacion" => date('Y-m-d H:i:s', time()), "PROC_FlagEstado" => $this->input->post('estado'), "PROD_Codigo" => $curso, "SUBCURSOP_Codigo" => $this->input->post('subcurso'), "user_id" => $user_id);
         if ($accion == "n") {
             $persona = $this->profesor_model->insertar($data);
         } elseif ($accion == "e") {
             $this->profesor_model->modificar($codigo, $data);
         }
     }
 }
开发者ID:ccjuantrujillo,项目名称:cepreadm,代码行数:17,代码来源:profesor.php

示例3: grabar

 public function grabar()
 {
     parent::grabar();
     $accion = $this->input->get_post('accion');
     $codigo_padre = $this->input->get_post('codigo_padre');
     $codigo = $this->input->get_post('codigo');
     $user_id = $this->input->get_post('user_id');
     $resultado = true;
     $data = array("ALUMC_FlagEstado" => $this->input->post('estado'), "user_id" => $this->input->post('apellidos'), "CICLOP_Codigo" => $this->input->post('ciclo'), "PERSP_Codigo" => $this->codigo);
     if ($accion == "n") {
         $this->alumno_model->insertar($data);
     } elseif ($accion == "e") {
         $this->alumno_model->modificar($codigo, $data);
     }
     echo json_encode($resultado);
 }
开发者ID:ccjuantrujillo,项目名称:cepreadm,代码行数:16,代码来源:alumno.php


注:本文中的Persona::grabar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。