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


PHP Item::whereIdBanque方法代码示例

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


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

示例1: attributeNote

 function attributeNote($id_Station, $id_Etudiant, array $inputs, $id_Enseignant)
 {
     $id_Examen = Station::whereIdStation($id_Station)->first()->id_Examen;
     $id_Session = Examen::whereIdExamen($id_Examen)->first()->id_Session;
     $id_Note_Examen = $this->createNoteExamen($id_Examen, $id_Session, $id_Etudiant);
     $arrayStatus = $this->createNoteStation($id_Note_Examen, $id_Station, $id_Enseignant);
     $id_Banque = Station::whereIdStation($id_Station)->first()->id_Banque;
     $items = Item::whereIdBanque($id_Banque)->get();
     if (count($items) != count($inputs)) {
         return response()->json(['status' => 0], 200);
     } else {
         if ($arrayStatus['status'] == 1) {
             $id_Note_Station = $arrayStatus['id_Note_Station'];
             $i = 0;
             foreach ($items as $item) {
                 $this->createItemNote($item->id_Item, $id_Note_Station, $inputs[$i]);
                 $i++;
             }
             return 1;
         } else {
             return 2;
             //Note Station existe
         }
     }
 }
开发者ID:S4M37,项目名称:Project_GangOfThree,代码行数:25,代码来源:GestNotes.php

示例2: show

 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($sessionId = null, $examenId = null, $stationId = null)
 {
     if (is_null($stationId)) {
         // display the hole examen in Specific Session
         $stations = $this->gestSession->getStations($examenId);
         return view('stationView')->with('stations', $stations)->with('sessionId', $sessionId)->with('examenId', $examenId);
     } else {
         // display specific session
         $station = $this->gestSession->getStation($stationId);
         $contexte = $this->gestSession->getContexte($station->id_Contexte);
         $critere = $this->gestSession->getCritere($station->id_Critere);
         $domaine = $this->gestSession->getDomaine($station->id_Domaine);
         $systeme = $this->gestSession->getSysteme($station->id_Systeme);
         $items = Item::whereIdBanque($station->id_Banque)->join('Competence', 'Item.id_Competence', '=', 'Competence.id_Competence')->OrderBy('id_Item', 'asc')->get();
         return view('stationDetailView')->with('station', $station)->with('sessionId', $sessionId)->with('examenId', $examenId)->with('stationId', $stationId)->with('contexte', $contexte)->with('critere', $critere)->with('domaine', $domaine)->with('systeme', $systeme)->with('items', $items);
     }
 }
开发者ID:S4M37,项目名称:Project_GangOfThree,代码行数:23,代码来源:StationController.php


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