ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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 
19  function __construct($a_obj_id)
20  {
21  global $ilDB;
22 
23  parent::__construct($a_obj_id);
24  $this->db = $ilDB;
25  }
26 
27  static function _getNotAttempted($a_obj_id)
28  {
29  $users = array();
30 
31  $members = self::getMembers($a_obj_id);
32  if($members)
33  {
34  // diff in progress, completed and failed (use stored result in LPStatusWrapper)
35  $users = array_diff((array) $members, ilLPStatusWrapper::_getInProgress($a_obj_id));
36  $users = array_diff((array) $members, ilLPStatusWrapper::_getCompleted($a_obj_id));
37  $users = array_diff((array) $members, ilLPStatusWrapper::_getFailed($a_obj_id));
38  }
39 
40  return $users;
41  }
42 
43  static function _getInProgress($a_obj_id)
44  {
45  $objective_results = ilLPStatusWrapper::_getStatusInfo($a_obj_id);
46  $usr_ids = (array)$objective_results['user_status'][self::LP_STATUS_IN_PROGRESS_NUM];
47 
48  /* change_event is of no use when no objective has been tried yet
49  include_once './Services/Tracking/classes/class.ilChangeEvent.php';
50  $users = ilChangeEvent::lookupUsersInProgress($a_obj_id);
51 
52  // Exclude all users with status completed/failed.
53  $users = array_diff((array) $users,ilLPStatusWrapper::_getCompleted($a_obj_id));
54  $users = array_diff((array) $users,ilLPStatusWrapper::_getFailed($a_obj_id));
55  */
56 
57  if($usr_ids)
58  {
59  // Exclude all non members
60  $usr_ids = array_intersect(self::getMembers($a_obj_id), (array)$usr_ids);
61  }
62 
63  return $usr_ids ? $usr_ids : array();
64  }
65 
66  static function _getCompleted($a_obj_id)
67  {
68  $objective_results = ilLPStatusWrapper::_getStatusInfo($a_obj_id);
69  $usr_ids = (array)$objective_results['user_status'][self::LP_STATUS_COMPLETED_NUM];
70 
71  if($usr_ids)
72  {
73  // Exclude all non members
74  $usr_ids = array_intersect(self::getMembers($a_obj_id), (array)$usr_ids);
75  }
76 
77  return $usr_ids ? $usr_ids : array();
78  }
79 
80  static function _getFailed($a_obj_id)
81  {
82  $objective_results = ilLPStatusWrapper::_getStatusInfo($a_obj_id);
83  $usr_ids = (array)$objective_results['user_status'][self::LP_STATUS_FAILED_NUM];
84 
85  if($usr_ids)
86  {
87  // Exclude all non members
88  $usr_ids = array_intersect(self::getMembers($a_obj_id), (array)$usr_ids);
89  }
90 
91  return $usr_ids ? $usr_ids : array();
92  }
93 
94  static function _getStatusInfo($a_obj_id)
95  {
96  global $ilDB;
97 
98  include_once 'Modules/Course/classes/class.ilCourseObjective.php';
99 
100  $status_info = array();
101  $status_info['user_status'] = array();
102  $status_info['objectives'] = ilCourseObjective::_getObjectiveIds($a_obj_id,true);
103  $status_info['num_objectives'] = count($status_info['objectives']);
104 
105  if($status_info['num_objectives'])
106  {
107  $in = $ilDB->in('objective_id',$status_info['objectives'],false,'integer');
108 
109  include_once "Modules/Course/classes/Objectives/class.ilLOUserResults.php";
110  foreach(ilLOUserResults::getSummarizedObjectiveStatusForLP($a_obj_id, $status_info['objectives']) as $user_id => $user_status)
111  {
112  $status_info['user_status'][$user_status][] = $user_id;
113  }
114 
115  // change event should lead to "in progress" - see determineStatus()
116  include_once("./Services/Tracking/classes/class.ilChangeEvent.php");
117  foreach(ilChangeEvent::lookupUsersInProgress($a_obj_id) as $user_id)
118  {
119  if(!is_array($status_info['user_status'][ilLPStatus::LP_STATUS_IN_PROGRESS_NUM]) ||
120  !in_array($user_id, $status_info['user_status'][ilLPStatus::LP_STATUS_IN_PROGRESS_NUM]))
121  {
122  $status_info['user_status'][ilLPStatus::LP_STATUS_IN_PROGRESS_NUM][] = $user_id;
123  }
124  }
125 
126  // Read title/description
127  $query = "SELECT * FROM crs_objectives WHERE ".$in;
128  $res = $ilDB->query($query);
129  while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
130  {
131  $status_info['objective_title'][$row->objective_id] = $row->title;
132  $status_info['objective_description'][$row->objective_id] = $row->description;
133  }
134  }
135 
136  return $status_info;
137  }
138 
147  function determineStatus($a_obj_id, $a_user_id, $a_obj = null)
148  {
149  global $ilObjDataCache, $ilDB;
150 
151  // the status completed depends on:
152  // $status_info['num_objectives'] (ilLPStatusWrapper::_getStatusInfo($a_obj_id);)
153  // - ilCourseObjective::_getObjectiveIds($a_obj_id);
154  // - table crs_objectives manipulated in
155  // - ilCourseObjective
156 
157  // $status_info['objective_result'] (ilLPStatusWrapper::_getStatusInfo($a_obj_id);)
158  // table crs_objective_status (must not contain a dataset)
159  // ilCourseObjectiveResult -> added ilLPStatusWrapper::_updateStatus()
160 
161  $status = self::LP_STATUS_NOT_ATTEMPTED_NUM;
162  switch ($ilObjDataCache->lookupType($a_obj_id))
163  {
164  case "crs":
165  include_once("./Services/Tracking/classes/class.ilChangeEvent.php");
166  if (ilChangeEvent::hasAccessed($a_obj_id, $a_user_id))
167  {
168  // an initial test (only) should also lead to "in progress"
169  $status = self::LP_STATUS_IN_PROGRESS_NUM;
170 
171  include_once 'Modules/Course/classes/class.ilCourseObjective.php';
172  $objectives = ilCourseObjective::_getObjectiveIds($a_obj_id, true);
173  if ($objectives)
174  {
175  // #14051 - getSummarizedObjectiveStatusForLP() might return null
176  include_once "Modules/Course/classes/Objectives/class.ilLOUserResults.php";
177  $objtv_status = ilLOUserResults::getSummarizedObjectiveStatusForLP($a_obj_id, $objectives, $a_user_id);
178  if($objtv_status !== null)
179  {
180  $status = $objtv_status;
181  }
182  }
183  }
184  break;
185  }
186  return $status;
187  }
188 
194  protected static function getMembers($a_obj_id)
195  {
196  include_once 'Modules/Course/classes/class.ilCourseParticipants.php';
197  $member_obj = ilCourseParticipants::_getInstanceByObjId($a_obj_id);
198  return $member_obj->getMembers();
199  }
200 
208  public static function _lookupCompletedForObject($a_obj_id, $a_user_ids = null)
209  {
210  if(!$a_user_ids)
211  {
212  $a_user_ids = self::getMembers($a_obj_id);
213  if(!$a_user_ids)
214  {
215  return array();
216  }
217  }
218  return self::_lookupStatusForObject($a_obj_id, self::LP_STATUS_COMPLETED_NUM, $a_user_ids);
219  }
220 
228  public static function _lookupFailedForObject($a_obj_id, $a_user_ids = null)
229  {
230  return array();
231  }
232 
240  public static function _lookupInProgressForObject($a_obj_id, $a_user_ids = null)
241  {
242  if(!$a_user_ids)
243  {
244  $a_user_ids = self::getMembers($a_obj_id);
245  if(!$a_user_ids)
246  {
247  return array();
248  }
249  }
250  return self::_lookupStatusForObject($a_obj_id, self::LP_STATUS_IN_PROGRESS_NUM, $a_user_ids);
251  }
252 }
253 
254 
255 ?>
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.
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.
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.