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


PHP DashboardController::subjectList方法代码示例

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


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

示例1: fetch

 function fetch($id)
 {
     $istook = onlineExamsGrades::where('examId', $id)->where('studentId', $this->data['users']->id)->count();
     $onlineExams = onlineExams::where('id', $id)->first()->toArray();
     $onlineExams['examClass'] = json_decode($onlineExams['examClass']);
     $onlineExams['examQuestion'] = json_decode($onlineExams['examQuestion']);
     if (time() > $onlineExams['ExamEndDate'] || time() < $onlineExams['examDate']) {
         $onlineExams['finished'] = true;
     }
     if ($istook > 0) {
         $onlineExams['taken'] = true;
     }
     $onlineExams['examDate'] = date("m/d/Y", $onlineExams['examDate']);
     $onlineExams['ExamEndDate'] = date("m/d/Y", $onlineExams['ExamEndDate']);
     $DashboardController = new DashboardController();
     $onlineExams['subject'] = $DashboardController->subjectList($onlineExams['examClass']);
     return $onlineExams;
 }
开发者ID:schoex,项目名称:Campusmate,代码行数:18,代码来源:OnlineExamsController.php

示例2: fetch

 function fetch($id)
 {
     $toReturn = assignments::where('id', $id)->first();
     $DashboardController = new DashboardController();
     $toReturn['subject'] = $DashboardController->subjectList(json_decode($toReturn->classId, true));
     return $toReturn;
 }
开发者ID:schoex,项目名称:Campusmate,代码行数:7,代码来源:AssignmentsController.php


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