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


PHP Estado::getEstadoById方法代码示例

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


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

示例1: search_programaciones

 public function search_programaciones()
 {
     if (!Request::ajax() || !Auth::check()) {
         return Response::json(array('success' => false), 200);
     }
     $id = Auth::id();
     $data["inside_url"] = Config::get('app.inside_url');
     $data["user"] = Session::get('user');
     if ($data["user"]->idrol == 1 || $data["user"]->idrol == 2 || $data["user"]->idrol == 3 || $data["user"]->idrol == 4) {
         // Check if the current user is the "System Admin"
         $fecha_ini = date("Y-m-d", strtotime("first day of january"));
         $fecha_fin = date("Y-m-d", strtotime('last day of december'));
         $array_ot = null;
         $array_ot = OtCorrectivo::getOtXPeriodo(9, $fecha_ini, $fecha_fin)->orderBy('fecha_programacion', 'desc')->get()->toArray();
         $programaciones = [];
         $horas = [];
         $estados = [];
         $codigos = [];
         $length = sizeof($array_ot);
         $ids = [];
         for ($i = 0; $i < $length; $i++) {
             $programaciones[] = date("Y-m-d", strtotime($array_ot[$i]['fecha_programacion']));
             $codigo_ot = $array_ot[$i]['ot_tipo_abreviatura'] . $array_ot[$i]['ot_correlativo'] . $array_ot[$i]['ot_activo_abreviatura'];
             $hora = date("H:i", strtotime($array_ot[$i]['fecha_programacion']));
             $id = $array_ot[$i]['idot_correctivo'];
             $idestado = $array_ot[$i]['idestado_ot'];
             $estado = Estado::getEstadoById($idestado)->get();
             $estado = $estado[0];
             array_push($horas, $hora);
             array_push($estados, $estado);
             array_push($codigos, $codigo_ot);
             array_push($ids, $id);
         }
         return Response::json(array('success' => true, 'programaciones' => $programaciones, 'horas' => $horas, 'estados' => $estados, 'ots' => $array_ot), 200);
     } else {
         return Response::json(array('success' => false), 200);
     }
 }
开发者ID:ktakayama91,项目名称:GTSlaravel,代码行数:38,代码来源:OtController.php


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