ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilLPStatusObjectives.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once 'Services/Tracking/classes/class.ilLPStatus.php';
6 
7 
17 {
18  public function __construct($a_obj_id)
19  {
20  global $ilDB;
21 
22  parent::__construct($a_obj_id);
23  $this->db = $ilDB;
24  }
25 
26  public static function _getNotAttempted($a_obj_id)
27  {
28  $users = array();
29 
30  $members = self::getMembers($a_obj_id);
31  if ($members) {
32  // diff in progress, completed and failed (use stored result in LPStatusWrapper)
33  $users = array_diff((array) $members, ilLPStatusWrapper::_getInProgress($a_obj_id));
34  $users = array_diff((array) $members, ilLPStatusWrapper::_getCompleted($a_obj_id));
35  $users = array_diff((array) $members, ilLPStatusWrapper::_getFailed($a_obj_id));
36  }
37 
38  return $users;
39  }
40 
41  public static function _getInProgress($a_obj_id)
42  {
43  $objective_results = ilLPStatusWrapper::_getStatusInfo($a_obj_id);
44  $usr_ids = (array) $objective_results['user_status'][self::LP_STATUS_IN_PROGRESS_NUM];
45 
46  /* change_event is of no use when no objective has been tried yet
47  include_once './Services/Tracking/classes/class.ilChangeEvent.php';
48  $users = ilChangeEvent::lookupUsersInProgress($a_obj_id);
49 
50  // Exclude all users with status completed/failed.
51  $users = array_diff((array) $users,ilLPStatusWrapper::_getCompleted($a_obj_id));
52  $users = array_diff((array) $users,ilLPStatusWrapper::_getFailed($a_obj_id));
53  */
54 
55  if ($usr_ids) {
56  // Exclude all non members
57  $usr_ids = array_intersect(self::getMembers($a_obj_id), (array) $usr_ids);
58  }
59 
60  return $usr_ids ? $usr_ids : array();
61  }
62 
63  public static function _getCompleted($a_obj_id)
64  {
65  $objective_results = ilLPStatusWrapper::_getStatusInfo($a_obj_id);
66  $usr_ids = (array) $objective_results['user_status'][self::LP_STATUS_COMPLETED_NUM];
67 
68  if ($usr_ids) {
69  // Exclude all non members
70  $usr_ids = array_intersect(self::getMembers($a_obj_id), (array) $usr_ids);
71  }
72 
73  return $usr_ids ? $usr_ids : array();
74  }
75 
76  public static function _getFailed($a_obj_id)
77  {
78  $objective_results = ilLPStatusWrapper::_getStatusInfo($a_obj_id);
79  $usr_ids = (array) $objective_results['user_status'][self::LP_STATUS_FAILED_NUM];
80 
81  if ($usr_ids) {
82  // Exclude all non members
83  $usr_ids = array_intersect(self::getMembers($a_obj_id), (array) $usr_ids);
84  }
85 
86  return $usr_ids ? $usr_ids : array();
87  }
88 
89  public static function _getStatusInfo($a_obj_id)
90  {
91  global $ilDB;
92 
93  include_once 'Modules/Course/classes/class.ilCourseObjective.php';
94 
95  $status_info = array();
96  $status_info['user_status'] = array();
97  $status_info['objectives'] = ilCourseObjective::_getObjectiveIds($a_obj_id, true);
98  $status_info['num_objectives'] = count($status_info['objectives']);
99 
100  if ($status_info['num_objectives']) {
101  $in = $ilDB->in('objective_id', $status_info['objectives'], false, 'integer');
102 
103  include_once "Modules/Course/classes/Objectives/class.ilLOUserResults.php";
104  foreach (ilLOUserResults::getSummarizedObjectiveStatusForLP($a_obj_id, $status_info['objectives']) as $user_id => $user_status) {
105  $status_info['user_status'][$user_status][] = $user_id;
106  }
107 
108  // change event should lead to "in progress" - see determineStatus()
109  include_once("./Services/Tracking/classes/class.ilChangeEvent.php");
110  foreach (ilChangeEvent::lookupUsersInProgress($a_obj_id) as $user_id) {
111  if (!is_array($status_info['user_status'][ilLPStatus::LP_STATUS_IN_PROGRESS_NUM]) ||
112  !in_array($user_id, $status_info['user_status'][ilLPStatus::LP_STATUS_IN_PROGRESS_NUM])) {
113  $status_info['user_status'][ilLPStatus::LP_STATUS_IN_PROGRESS_NUM][] = $user_id;
114  }
115  }
116 
117  // Read title/description
118  $query = "SELECT * FROM crs_objectives WHERE " . $in;
119  $res = $ilDB->query($query);
120  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
121  $status_info['objective_title'][$row->objective_id] = $row->title;
122  $status_info['objective_description'][$row->objective_id] = $row->description;
123  }
124  }
125 
126  return $status_info;
127  }
128 
137  public function determineStatus($a_obj_id, $a_user_id, $a_obj = null)
138  {
139  global $ilObjDataCache, $ilDB;
140 
141  // the status completed depends on:
142  // $status_info['num_objectives'] (ilLPStatusWrapper::_getStatusInfo($a_obj_id);)
143  // - ilCourseObjective::_getObjectiveIds($a_obj_id);
144  // - table crs_objectives manipulated in
145  // - ilCourseObjective
146 
147  // $status_info['objective_result'] (ilLPStatusWrapper::_getStatusInfo($a_obj_id);)
148  // table crs_objective_status (must not contain a dataset)
149  // ilCourseObjectiveResult -> added ilLPStatusWrapper::_updateStatus()
150 
151  $status = self::LP_STATUS_NOT_ATTEMPTED_NUM;
152  switch ($ilObjDataCache->lookupType($a_obj_id)) {
153  case "crs":
154  include_once("./Services/Tracking/classes/class.ilChangeEvent.php");
155  if (ilChangeEvent::hasAccessed($a_obj_id, $a_user_id)) {
156  // an initial test (only) should also lead to "in progress"
157  $status = self::LP_STATUS_IN_PROGRESS_NUM;
158 
159  include_once 'Modules/Course/classes/class.ilCourseObjective.php';
160  $objectives = ilCourseObjective::_getObjectiveIds($a_obj_id, true);
161  if ($objectives) {
162  // #14051 - getSummarizedObjectiveStatusForLP() might return null
163  include_once "Modules/Course/classes/Objectives/class.ilLOUserResults.php";
164  $objtv_status = ilLOUserResults::getSummarizedObjectiveStatusForLP($a_obj_id, $objectives, $a_user_id);
165  if ($objtv_status !== null) {
166  $status = $objtv_status;
167  }
168  }
169  }
170  break;
171  }
172  return $status;
173  }
174 
180  protected static function getMembers($a_obj_id)
181  {
182  include_once 'Modules/Course/classes/class.ilCourseParticipants.php';
183  $member_obj = ilCourseParticipants::_getInstanceByObjId($a_obj_id);
184  return $member_obj->getMembers();
185  }
186 
194  public static function _lookupCompletedForObject($a_obj_id, $a_user_ids = null)
195  {
196  if (!$a_user_ids) {
197  $a_user_ids = self::getMembers($a_obj_id);
198  if (!$a_user_ids) {
199  return array();
200  }
201  }
202  return self::_lookupStatusForObject($a_obj_id, self::LP_STATUS_COMPLETED_NUM, $a_user_ids);
203  }
204 
212  public static function _lookupFailedForObject($a_obj_id, $a_user_ids = null)
213  {
214  return array();
215  }
216 
224  public static function _lookupInProgressForObject($a_obj_id, $a_user_ids = null)
225  {
226  if (!$a_user_ids) {
227  $a_user_ids = self::getMembers($a_obj_id);
228  if (!$a_user_ids) {
229  return array();
230  }
231  }
232  return self::_lookupStatusForObject($a_obj_id, self::LP_STATUS_IN_PROGRESS_NUM, $a_user_ids);
233  }
234 }
static _lookupFailedForObject($a_obj_id, $a_user_ids=null)
Get failed users for object.
static hasAccessed($a_obj_id, $a_usr_id)
Has accessed.
static _getInProgress($a_obj_id)
Static function to read users who have the status &#39;in_progress&#39;.
static _getCompleted($a_obj_id)
Static function to read the users who have the status &#39;completed&#39;.
static getSummarizedObjectiveStatusForLP($a_obj_id, array $a_objective_ids, $a_user_id=null)
static _lookupInProgressForObject($a_obj_id, $a_user_ids=null)
Get in progress users for object.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
const LP_STATUS_IN_PROGRESS_NUM
static _getObjectiveIds($course_id, $a_activated_only=false)
static _getFailed($a_obj_id)
Static function to read the users who have the status &#39;completed&#39;.
static _lookupCompletedForObject($a_obj_id, $a_user_ids=null)
Get completed users for object.
foreach($_POST as $key=> $value) $res
$query
determineStatus($a_obj_id, $a_user_id, $a_obj=null)
Determine status.
Create styles array
The data for the language used.
static _getStatusInfo($a_obj_id)
Reads informations about the object e.g test results, tlt, number of visits.
$users
Definition: authpage.php:44
if(php_sapi_name() !='cli') $in
Definition: Utf8Test.php:37
global $ilDB
Abstract class ilLPStatus for all learning progress modes E.g ilLPStatusManual, ilLPStatusObjectives ...
static getMembers($a_obj_id)
Get members for object.
static lookupUsersInProgress($a_obj_id)
Lookup users in progress.