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


PHP Sesion::find方法代码示例

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


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

示例1: update

 /**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     if (Auth::check()) {
         $data["inside_url"] = Config::get('app.inside_url');
         $data["user"] = Session::get('user');
         // Verifico si el usuario es un Webmaster
         if ($data["user"]->idrol == 1 || $data["user"]->idrol == 2 || $data["user"]->idrol == 3 || $data["user"]->idrol == 4) {
             // Validate the info, create rules for the inputs
             $rules = array('nombre' => 'required', 'departamento' => 'required', 'servicio_clinico' => 'required', 'responsable' => 'required', 'numero_sesion' => 'required');
             // Run the validation rules on the inputs from the form
             $validator = Validator::make(Input::all(), $rules);
             // If the validator fails, redirect back to the form
             if ($validator->fails()) {
                 return Redirect::to('programacion_docente/edit/' . $id)->withErrors($validator)->withInput(Input::all());
             } else {
                 $programacion_docente = ProgramacionDocente::find($id);
                 $programacion_docente->nombre = Input::get('nombre');
                 $programacion_docente->id_departamento = Input::get('departamento');
                 $programacion_docente->id_servicio_clinico = Input::get('servicio_clinico');
                 $programacion_docente->id_sesion = Input::get('numero_sesion');
                 $programacion_docente->id_responsable = Input::get('responsable');
                 $sesion = Sesion::find(Input::get('numero_sesion'));
                 $programacion_docente->fecha = $sesion->fecha;
                 $programacion_docente->save();
                 Session::flash('message', 'Se editó correctamente la programación de docente.');
                 return Redirect::to('programacion_docente/show/' . $id);
             }
         } else {
             return View::make('error/error', $data);
         }
     } else {
         return View::make('error/error', $data);
     }
 }
开发者ID:ktakayama91,项目名称:GTSlaravel,代码行数:40,代码来源:ProgramacionDocenteController.php

示例2: update_fecha_sesion

 public function update_fecha_sesion()
 {
     if (Auth::check()) {
         $data["inside_url"] = Config::get('app.inside_url');
         $data["user"] = Session::get('user');
         $dimensiones = Dimension::all()->count();
         // Verifico si el usuario es un Webmaster
         if ($data["user"]->idrol == 1 || $data["user"]->idrol == 2 || $data["user"]->idrol == 3 || $data["user"]->idrol == 4) {
             // Validate the info, create rules for the inputs
             $id_sesion = Input::get('id_sesion');
             $rules = array('fecha' => 'required', 'hora_inicio' => 'required');
             // Run the validation rules on the inputs from the form
             $validator = Validator::make(Input::all(), $rules);
             // If the validator fails, redirect back to the form
             if ($validator->fails()) {
                 return Redirect::to('capacitacion/edit_fecha_sesion/' . $id_sesion)->withErrors($validator)->withInput(Input::all());
             } else {
                 $sesion = Sesion::find($id_sesion);
                 $capacitacion = Capacitacion::find($sesion->id_capacitacion);
                 $fecha_sesion = date('Y-m-d', strtotime(Input::get('fecha')));
                 if ($fecha_sesion <= $capacitacion->fecha_fin && $fecha_sesion >= $capacitacion->fecha_ini) {
                     $sesion->fecha = date('Y-m-d H:i:s', strtotime($fecha_sesion . " " . Input::get('hora_inicio')));
                     $sesion->save();
                 } else {
                     Session::flash('error', 'La fecha de la sesión debe estar comprendido entre las fechas de inicio y fin de la capacitación.');
                     return Redirect::to('capacitacion/show_fecha_sesion/' . $id_sesion);
                 }
                 Session::flash('message', 'Se edito correctamente la fecha de la sesión.');
                 return Redirect::to('capacitacion/show_fecha_sesion/' . $id_sesion);
             }
         } else {
             return View::make('error/error', $data);
         }
     } else {
         return View::make('error/error', $data);
     }
 }
开发者ID:ktakayama91,项目名称:GTSlaravel,代码行数:37,代码来源:CapacitacionesController.php


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