20 $obj_ids = array_keys($obj_refs);
23 include_once
"Services/Object/classes/class.ilObjectLP.php";
24 include_once
"Services/Tracking/classes/class.ilLPStatus.php";
27 include_once
'Modules/Course/classes/class.ilObjCourse.php';
28 $view_modes = array();
29 $query =
"SELECT obj_id, view_mode FROM crs_settings".
30 " WHERE ".$ilDB->in(
"obj_id", $obj_ids ,
false,
"integer");
31 $set = $ilDB->query(
$query);
32 while($rec = $ilDB->fetchAssoc($set))
34 $view_modes[(int)$rec[
"obj_id"]] = (
int)$rec[
"view_mode"];
39 $query =
"SELECT object_data.obj_id, title, CASE WHEN status IS NULL THEN ".ilLPStatus::LP_STATUS_NOT_ATTEMPTED_NUM.
" ELSE status END AS status,".
40 " status_changed, percentage, read_count+childs_read_count AS read_count, spent_seconds+childs_spent_seconds AS spent_seconds,".
41 " u_mode, type, visits, mark, u_comment".
43 " LEFT JOIN ut_lp_settings ON (ut_lp_settings.obj_id = object_data.obj_id)".
44 " LEFT JOIN read_event ON (read_event.obj_id = object_data.obj_id AND read_event.usr_id = ".$ilDB->quote($a_user_id,
"integer").
")".
45 " LEFT JOIN ut_lp_marks ON (ut_lp_marks.obj_id = object_data.obj_id AND ut_lp_marks.usr_id = ".$ilDB->quote($a_user_id,
"integer").
")".
47 " WHERE ".$ilDB->in(
"object_data.obj_id", $obj_ids,
false,
"integer").
49 $set = $ilDB->query(
$query);
51 while($rec = $ilDB->fetchAssoc($set))
53 $rec[
"comment"] = $rec[
"u_comment"];
54 unset($rec[
"u_comment"]);
56 $rec[
"ref_ids"] = $obj_refs[(int)$rec[
"obj_id"]];
57 $rec[
"status"] = (int)$rec[
"status"];
58 $rec[
"percentage"] = (int)$rec[
"percentage"];
59 $rec[
"read_count"] = (int)$rec[
"read_count"];
60 $rec[
"spent_seconds"] = (int)$rec[
"spent_seconds"];
61 $rec[
"u_mode"] = (int)$rec[
"u_mode"];
63 if($rec[
"type"] ==
"sess")
65 $session = $sessions[$rec[
"obj_id"]];
66 $rec[
"title"] = $session[
"title"];
75 else if(!$rec[
"u_mode"])
78 $rec[
"u_mode"] = $olp->getCurrentMode();
95 $query =
"SELECT crs_id, crs_objectives.objective_id AS obj_id, title, status, ".$ilDB->quote(
"lobj",
"text").
" AS type".
96 " FROM crs_objectives".
97 " LEFT JOIN crs_objective_status ON (crs_objectives.objective_id = crs_objective_status.objective_id AND user_id = ".$a_user_id.
")".
98 " WHERE ".$ilDB->in(
"crs_objectives.objective_id", $a_objective_ids,
false,
"integer").
100 $set = $ilDB->query(
$query);
102 while($rec = $ilDB->fetchAssoc($set))
119 $scores_raw = $scores = array();
120 include_once
'./Modules/ScormAicc/classes/class.ilObjSAHSLearningModule.php';
127 include_once
'./Modules/ScormAicc/classes/class.ilObjSCORMLearningModule.php';
129 $scores_raw = $module->getTrackingDataAgg($a_user_id);
133 include_once
'./Modules/Scorm2004/classes/class.ilObjSCORM2004LearningModule.php';
135 $scores_raw = $module->getTrackingDataAgg($a_user_id);
140 foreach($scores_raw as $item)
142 $scores[$item[
"sco_id"]] = $item[
"score"];
148 include_once
'Services/Tracking/classes/class.ilLPStatusWrapper.php';
152 foreach($a_sco_ids as $sco_id)
155 if(in_array($a_user_id, $status_info[
"failed"][$sco_id]))
159 elseif(in_array($a_user_id, $status_info[
"completed"][$sco_id]))
163 elseif(in_array($a_user_id, $status_info[
"in_progress"][$sco_id]))
172 $items[$sco_id] = array(
173 "title" => $status_info[
"scos_title"][$sco_id],
176 "score" => (
int)$scores[$sco_id]
190 include_once
'./Services/Object/classes/class.ilObjectLP.php';
192 $collection = $olp->getCollectionInstance();
197 $item_data = $collection->getPossibleItems(
$ref_id);
205 include_once
'Services/Tracking/classes/class.ilLPStatusWrapper.php';
209 foreach($a_item_ids as $item_id)
211 if(!isset($item_data[$item_id]))
216 if(in_array($a_user_id, $status_info[
"completed"][$item_id]))
220 elseif(in_array($a_user_id, $status_info[
"in_progress"][$item_id]))
229 $items[$item_id] = array(
230 "title" => $item_data[$item_id][
"title"],
254 $a_offset = 0, $a_limit = 9999, array $a_filters = NULL, array $a_additional_fields = NULL,
255 $check_agreement =
false, $privacy_fields = NULL)
259 $fields = array(
"usr_data.usr_id",
"login",
"active");
263 $where[] =
"usr_data.usr_id <> ".$ilDB->quote(ANONYMOUS_USER_ID,
"integer");
272 if (is_array($a_users))
275 $where[] = $ilDB->in(
"usr_data.usr_id", $a_users,
false,
"integer");
278 $query =
" FROM usr_data ".$left.
" JOIN read_event ON (read_event.usr_id = usr_data.usr_id".
279 " AND read_event.obj_id = ".$ilDB->quote($obj_id,
"integer").
")".
280 " LEFT JOIN ut_lp_marks ON (ut_lp_marks.usr_id = usr_data.usr_id ".
281 " AND ut_lp_marks.obj_id = ".$ilDB->quote($obj_id,
"integer").
")".
282 " LEFT JOIN usr_pref ON (usr_pref.usr_id = usr_data.usr_id AND keyword = ".$ilDB->quote(
"language",
"text").
")".
285 $queries = array(array(
"fields"=>$fields,
"query"=>
$query));
288 if($a_order_field ==
"language")
290 $a_order_field =
"usr_pref.value";
297 $a_order_field =
"login";
299 else if(substr($a_order_field, 0, 4) ==
"udf_")
301 $udf_order = $a_order_field;
302 $a_order_field = null;
313 include_once
"Services/Utilities/classes/class.ilStr.php";
315 $udf_order, $a_order_dir);
331 $a_check_agreement = null, array $a_privacy_fields = null, array $a_filters = null)
335 if(!$a_result[
"cnt"])
342 $query =
"SELECT usr_id, field_id, value FROM udf_text WHERE ".$ilDB->in(
"field_id", $a_udf,
false,
"integer");
343 $set = $ilDB->query(
$query);
345 while(
$row = $ilDB->fetchAssoc($set))
347 $udf[
$row[
"usr_id"]][
"udf_".$row[
"field_id"]] =
$row[
"value"];
352 if($a_check_agreement)
355 include_once
"Services/Membership/classes/class.ilMemberAgreement.php";
359 $query =
"SELECT usr_id FROM usr_pref WHERE keyword = ".$ilDB->quote(
"public_profile",
"text").
360 " AND value = ".$ilDB->quote(
"y",
"text").
" OR value = ".$ilDB->quote(
"g",
"text");
361 $set = $ilDB->query(
$query);
362 $all_public = array();
363 while(
$row = $ilDB->fetchAssoc($set))
365 $all_public[] =
$row[
"usr_id"];
367 $query =
"SELECT usr_id,keyword FROM usr_pref WHERE ".$ilDB->like(
"keyword",
"text",
"public_%",
false).
368 " AND value = ".$ilDB->quote(
"y",
"text").
" AND ".$ilDB->in(
"usr_id", $all_public,
"",
"integer");
369 $set = $ilDB->query(
$query);
371 while(
$row = $ilDB->fetchAssoc($set))
373 $public[
$row[
"usr_id"]][] = substr($row[
"keyword"], 7);
378 foreach($a_result[
"set"] as $idx =>
$row)
381 if(isset($udf[
$row[
"usr_id"]]))
383 $a_result[
"set"][$idx] = $row = array_merge($row, $udf[$row[
"usr_id"]]);
387 if(
sizeof($a_privacy_fields) && $a_check_agreement && !in_array($row[
"usr_id"], $agreements))
389 foreach($a_privacy_fields as $field)
392 if(isset($row[$field]) && (!isset($public[$row[
"usr_id"]]) ||
393 !in_array($field, $public[$row[
"usr_id"]])))
396 if(isset($a_filters[$field]))
399 foreach(array_keys($a_result[
"set"][$idx]) as $col_id)
401 $a_result[
"set"][$idx][$col_id] = null;
403 $a_result[
"set"][$idx][
"privacy_conflict"] =
true;
410 $a_result[
"set"][$idx][$field] =
false;
435 static function getObjectsDataForUser($a_user_id, $a_parent_obj_id, $a_parent_ref_id, $a_order_field =
"", $a_order_dir =
"", $a_offset = 0, $a_limit = 9999,
436 array $a_filters = NULL, array $a_additional_fields = NULL, $use_collection =
true)
440 $fields = array(
"object_data.obj_id",
"title",
"type");
443 $objects =
self::getObjectIds($a_parent_obj_id, $a_parent_ref_id, $use_collection,
true, array($a_user_id));
445 $query =
" FROM object_data LEFT JOIN read_event ON (object_data.obj_id = read_event.obj_id AND".
446 " read_event.usr_id = ".$ilDB->quote($a_user_id,
"integer").
")".
447 " LEFT JOIN ut_lp_marks ON (ut_lp_marks.usr_id = ".$ilDB->quote($a_user_id,
"integer").
" AND".
448 " ut_lp_marks.obj_id = object_data.obj_id)".
449 " WHERE ".$ilDB->in(
"object_data.obj_id", $objects[
"object_ids"],
false,
"integer").
453 $queries[] = array(
"fields"=>$fields,
"query"=>
$query);
456 if($objects[
"objectives_parent_id"])
458 $objective_fields = array(
"crs_objectives.objective_id AS obj_id",
"title",
459 $ilDB->quote(
"lobj",
"text").
" as type");
461 if (is_array($a_additional_fields))
463 foreach($a_additional_fields as $field)
465 if($field !=
"status")
467 $objective_fields[] =
"NULL AS ".$field;
471 include_once(
"Services/Tracking/classes/class.ilLPStatus.php");
472 $objective_fields[] =
"CASE WHEN status IS NOT NULL THEN ".ilLPStatus::LP_STATUS_COMPLETED_NUM.
" ELSE NULL END AS status";
478 $where[] =
"crs_objectives.crs_id = ".$ilDB->quote($objects[
"objectives_parent_id"],
"integer");
480 $objectives_query =
" FROM crs_objectives".
481 " LEFT JOIN crs_objective_status ON (crs_objectives.objective_id = crs_objective_status.objective_id".
482 " AND crs_objective_status.user_id = ".$ilDB->quote($a_user_id,
"integer").
")".
485 $queries[] = array(
"fields"=>$objective_fields,
"query"=>$objectives_query,
"count"=>
"crs_objectives.objective_id");
488 if(!in_array($a_order_field, $fields))
490 $a_order_field =
"title";
499 foreach(
$result[
"set"] as $idx => $item)
501 if($item[
"type"] ==
"sess")
503 $session = $sessions[$item[
"obj_id"]];
504 $result[
"set"][$idx][
"title"] = $session[
"title"];
505 $result[
"set"][$idx][
"sort_title"] = $session[
"e_start"];
509 $result[
"set"][$idx][
"ref_id"] = $objects[
"ref_ids"][$item[
"obj_id"]];
513 if($objects[
"scorm"])
515 include_once(
"./Modules/ScormAicc/classes/class.ilObjSAHSLearningModule.php");
517 if($subtype ==
"scorm2004")
519 include_once(
"./Modules/Scorm2004/classes/class.ilObjSCORM2004LearningModule.php");
521 $scos_tracking = $sobj->getTrackingDataAgg($a_user_id,
true);
525 include_once(
"./Modules/ScormAicc/classes/class.ilObjSCORMLearningModule.php");
527 $scos_tracking = array();
528 foreach($sobj->getTrackingDataAgg($a_user_id) as $item)
533 $time = explode(
":", $item[
"time"]);
534 $item[
"time"] = $time[0]*60*60+$time[1]*60+$time[2];
536 $scos_tracking[$item[
"sco_id"]] = array(
"session_time"=>$item[
"time"]);
540 foreach($objects[
"scorm"][
"scos"] as $sco)
542 $row = array(
"title" => $objects[
"scorm"][
"scos_title"][$sco],
546 if(in_array($a_user_id, $objects[
"scorm"][
"completed"][$sco]))
550 else if(in_array($a_user_id, $objects[
"scorm"][
"failed"][$sco]))
554 else if(in_array($a_user_id, $objects[
"scorm"][
"in_progress"][$sco]))
558 $row[
"status"] = $status;
561 if(isset($scos_tracking[$sco]))
563 if(isset($scos_tracking[$sco][
"last_access"]))
568 $row[
"spent_seconds"] = $scos_tracking[$sco][
"session_time"];
590 $query =
"SELECT obj_id, title, e_start, e_end, CASE WHEN participated = 1 THEN 2 WHEN registered = 1 THEN 1 ELSE NULL END AS status,".
593 " JOIN event_appointment ON (event.obj_id = event_appointment.event_id)".
594 " LEFT JOIN event_participants ON (event_participants.event_id = event.obj_id AND usr_id = ".$ilDB->quote($a_user_id,
"integer").
")".
595 " WHERE ".$ilDB->in(
"obj_id", $obj_ids ,
false,
"integer");
596 $set = $ilDB->query(
$query);
598 while($rec = $ilDB->fetchAssoc($set))
600 $rec[
"comment"] = $rec[
"e_comment"];
601 unset($rec[
"e_comment"]);
609 $rec[
"title"] = $date.
': '.$rec[
"title"];
613 $rec[
"title"] = $date;
615 $sessions[$rec[
"obj_id"]] = $rec;
636 static function getObjectsSummaryForObject($a_parent_obj_id, $a_parent_ref_id, $a_order_field =
"", $a_order_dir =
"", $a_offset = 0, $a_limit = 9999,
637 array $a_filters = NULL, array $a_additional_fields = NULL, $a_preselected_obj_ids = NULL)
645 if($a_preselected_obj_ids === NULL)
651 foreach($a_preselected_obj_ids as $obj_id => $ref_ids)
653 $objects[
"object_ids"][] = $obj_id;
654 $objects[
"ref_ids"][$obj_id] = array_pop($ref_ids);
662 $set = $ilDB->query(
"SELECT obj_id,title,type FROM object_data".
663 " WHERE ".$ilDB->in(
"obj_id", $objects[
"object_ids"],
false,
"integer"));
664 while($rec = $ilDB->fetchAssoc($set))
666 $object_data[$rec[
"obj_id"]] = $rec;
667 if($a_preselected_obj_ids)
669 $object_data[$rec[
"obj_id"]][
"ref_ids"] = $a_preselected_obj_ids[$rec[
"obj_id"]];
673 foreach($objects[
"ref_ids"] as $object_id =>
$ref_id)
676 if(
sizeof($object_result))
678 if($object_data[$object_id])
680 $result[] = array_merge($object_data[$object_id], $object_result);
686 if($objects[
"objectives_parent_id"])
708 $where[] =
"usr_data.usr_id <> ".$ilDB->quote(ANONYMOUS_USER_ID,
"integer");
713 if (is_array($a_users))
716 $where[] = $ilDB->in(
"usr_data.usr_id", $a_users,
false,
"integer");
722 $query =
" FROM usr_data ".$left.
" JOIN read_event ON (read_event.usr_id = usr_data.usr_id".
723 " AND obj_id = ".$ilDB->quote($obj_id,
"integer").
")".
724 " LEFT JOIN ut_lp_marks ON (ut_lp_marks.usr_id = usr_data.usr_id ".
725 " AND ut_lp_marks.obj_id = ".$ilDB->quote($obj_id,
"integer").
")".
726 " LEFT JOIN usr_pref ON (usr_pref.usr_id = usr_data.usr_id AND keyword = ".$ilDB->quote(
"language",
"text").
")".
729 $fields[] =
'COUNT(usr_data.usr_id) AS user_count';
732 $queries[] = array(
"fields"=>$fields,
"query"=>
$query,
"count"=>
"*");
736 $users_no =
$result[
"user_count"];
743 else if(isset($a_filters[
"user_total"]))
745 if($a_filters[
"user_total"][
"from"] && $users_no < $a_filters[
"user_total"][
"from"])
749 else if($a_filters[
"user_total"][
"to"] && $users_no > $a_filters[
"user_total"][
"to"])
772 $result[
"user_total"] = $users_no;
792 $field_alias = $field;
796 $field_alias = $alias;
797 $alias =
" AS ".$alias;
802 if(preg_match(
"/".preg_quote(
" [[--HAVING").
"(.+)".preg_quote(
"HAVING--]]").
"/", $base_query, $hits))
804 $having =
" HAVING ".$hits[1];
805 $base_query = str_replace($hits[0],
"", $base_query);
808 $query =
"SELECT COUNT(*) AS counter, ".$field.$alias.
" ".$base_query.
" GROUP BY ".$field.$having.
" ORDER BY counter DESC";
809 $set = $ilDB->query(
$query);
811 while($rec = $ilDB->fetchAssoc($set))
813 $result[$rec[$field_alias]] = (int)$rec[
"counter"];
835 include_once
"Modules/Course/classes/class.ilCourseParticipants.php";
837 return $member_obj->getMembers();
840 include_once
"Modules/Group/classes/class.ilGroupParticipants.php";
842 return $member_obj->getMembers();
846 $path = $tree->getPathId($a_ref_id);
848 foreach(array_reverse(
$path) as $path_ref_id)
851 if($type ==
"crs" || $type ==
"grp")
865 include_once(
"./Modules/ScormAicc/classes/class.ilObjSAHSLearningModule.php");
867 if ($subtype ==
"scorm2004")
870 include_once(
"./Modules/Scorm2004/classes/class.ilObjSCORM2004LearningModule.php");
872 $all = $mod->getTrackedUsers(
"");
876 foreach($all as $item)
878 $a_users[] = $item[
"user_id"];
884 include_once(
"./Modules/ScormAicc/classes/SCORM/class.ilObjSCORMTracking.php");
890 include_once(
"./Modules/Exercise/classes/class.ilExerciseMembers.php");
891 include_once(
"./Modules/Exercise/classes/class.ilObjExercise.php");
894 $a_users = $members->getMembers();
898 include_once
"Services/Tracking/classes/class.ilLPStatusFactory.php";
900 $a_users = $class::getParticipants($obj_id);
919 static protected function buildFilters(array $where, array $a_filters = NULL, $a_aggregate =
false)
925 if(
sizeof($a_filters))
927 foreach($a_filters as $id => $value)
938 case "matriculation":
942 $where[] = $ilDB->like(
"usr_data.".$id,
"text",
"%".$value.
"%");
948 $where[] =
"usr_data.".$id.
" = ".$ilDB->quote($value ,
"text");
952 $where[] = $ilDB->like(
"ut_lp_marks.".$id,
"text",
"%".$value.
"%");
960 " OR ut_lp_marks.status IS NULL)";
966 $where[] =
"ut_lp_marks.".$id.
" = ".$ilDB->quote($value ,
"text");
974 $where[] =
"ut_lp_marks.".$id.
" >= ".$ilDB->quote($value[
"from"] ,
"integer");
978 $where[] =
"ut_lp_marks.".$id.
" <= ".$ilDB->quote($value[
"to"] ,
"integer");
985 $having[] =
"ROUND(AVG(ut_lp_marks.".$id.
")) >= ".$ilDB->quote($value[
"from"] ,
"integer");
989 $having[] =
"ROUND(AVG(ut_lp_marks.".$id.
")) <= ".$ilDB->quote($value[
"to"] ,
"integer");
995 $where[] =
"usr_pref.value = ".$ilDB->quote($value ,
"text");
1003 $value[
"from"] = $value[
"from"]->get(
IL_CAL_UNIX);
1012 case 'status_changed':
1015 case "registration":
1016 if($id ==
"registration")
1018 $id =
"create_date";
1023 case "first_access":
1027 $where[] = $id.
" >= ".$ilDB->quote($value[
"from"] ,
"date");
1031 $where[] = $id.
" <= ".$ilDB->quote($value[
"to"] ,
"date");
1040 $where[] =
"(read_event.".$id.
"+read_event.childs_".$id.
") >= ".$ilDB->quote($value[
"from"] ,
"integer");
1044 $where[] =
"(read_event.".$id.
"+read_event.childs_".$id.
") <= ".$ilDB->quote($value[
"to"] ,
"integer");
1051 $having[] =
"SUM(read_event.".$id.
"+read_event.childs_".$id.
") >= ".$ilDB->quote($value[
"from"] ,
"integer");
1055 $having[] =
"SUM(read_event.".$id.
"+read_event.childs_".$id.
") <= ".$ilDB->quote($value[
"to"] ,
"integer");
1060 case "spent_seconds":
1065 $where[] =
"(read_event.".$id.
"+read_event.childs_".$id.
") >= ".$ilDB->quote($value[
"from"] ,
"integer");
1069 $where[] =
"(read_event.".$id.
"+read_event.childs_".$id.
") <= ".$ilDB->quote($value[
"to"] ,
"integer");
1076 $having[] =
"ROUND(AVG(read_event.".$id.
"+read_event.childs_".$id.
")) >= ".$ilDB->quote($value[
"from"] ,
"integer");
1080 $having[] =
"ROUND(AVG(read_event.".$id.
"+read_event.childs_".$id.
")) <= ".$ilDB->quote($value[
"to"] ,
"integer");
1095 $sql .=
" WHERE ".implode(
" AND ", $where);
1100 $sql .=
" [[--HAVING ".implode(
" AND ", $having).
"HAVING--]]";
1114 static protected function buildColumns(array &$a_fields, array $a_additional_fields = NULL, $a_aggregate =
false)
1116 if(
sizeof($a_additional_fields))
1119 foreach($a_additional_fields as $field)
1121 if(substr($field, 0, 4) !=
"udf_")
1126 $pos = strrpos($field,
"_");
1131 $function = strtoupper(substr($field, $pos+1));
1132 $field = substr($field, 0, $pos);
1133 if(!in_array($function, array(
"MIN",
"MAX",
"SUM",
"AVG",
"COUNT")))
1144 $a_fields[] = $function.
"(value) AS ".$field.
"_".strtolower($function);
1148 $a_fields[] =
"value AS ".$field;
1153 case "spent_seconds":
1156 $a_fields[] =
"(".$field.
"+childs_".$field.
") AS ".$field;
1160 if($function ==
"AVG")
1162 $a_fields[] =
"ROUND(AVG(".$field.
"+childs_".$field.
"), 2) AS ".$field.
"_".strtolower($function);
1166 $a_fields[] = $function.
"(".$field.
"+childs_".$field.
") AS ".$field.
"_".strtolower($function);
1171 case "read_count_spent_seconds":
1172 if($function ==
"AVG")
1174 $a_fields[] =
"ROUND(AVG((spent_seconds+childs_spent_seconds)/(read_count+childs_read_count)), 2) AS ".$field.
"_".strtolower($function);
1181 if($function ==
"AVG")
1183 $a_fields[] =
"ROUND(AVG(".$field.
"), 2) AS ".$field.
"_".strtolower($function);
1187 $a_fields[] = $function.
"(".$field.
") AS ".$field.
"_".strtolower($function);
1192 $a_fields[] = $field;
1199 $udf[] = substr($field, 4);
1204 $a_fields = array_unique($a_fields);
1207 $udf = array_unique($udf);
1224 static public function getObjectIds($a_parent_obj_id, $a_parent_ref_id =
false, $use_collection =
true, $a_refresh_status =
true, $a_user_ids = null)
1226 include_once
"Services/Object/classes/class.ilObjectLP.php";
1228 $object_ids = array($a_parent_obj_id);
1229 $ref_ids = array($a_parent_obj_id => $a_parent_ref_id);
1230 $objectives_parent_id = $scorm = $subitems =
false;
1233 $mode = $olp->getCurrentMode();
1238 include_once
"Services/Tracking/classes/class.ilLPStatusFactory.php";
1240 $scorm = $status_scorm->_getStatusInfo($a_parent_obj_id);
1246 $objectives_parent_id = $a_parent_obj_id;
1251 include_once
"Services/Tracking/classes/class.ilLPStatusFactory.php";
1253 $subitems = $status_coll_man->_getStatusInfo($a_parent_obj_id);
1257 include_once
"Services/Tracking/classes/class.ilLPStatusFactory.php";
1259 $subitems = $status_coll_tlt->_getStatusInfo($a_parent_obj_id);
1266 $collection = $olp->getCollectionInstance();
1269 foreach($collection->getItems() as $child_ref_id)
1272 $object_ids[] = $child_id;
1273 $ref_ids[$child_id] = $child_ref_id;
1281 $object_ids = array_unique($object_ids);
1284 foreach($object_ids as $idx => $object_id)
1288 unset($object_ids[$idx]);
1294 if($a_refresh_status)
1299 return array(
"object_ids" => $object_ids,
1300 "ref_ids" => $ref_ids,
1301 "objectives_parent_id" => $objectives_parent_id,
1303 "subitems" => $subitems);
1313 static protected function getSubTree($a_parent_ref_id, array &$a_object_ids, array &$a_ref_ids)
1317 $children = $tree->getChilds($a_parent_ref_id);
1320 foreach($children as $child)
1322 if($child[
"type"] ==
"adm" || $child[
"type"] ==
"rolf")
1331 $cmode = $olp->getCurrentMode();
1348 $a_object_ids[] = $child[
"obj_id"];
1349 $a_ref_ids[$child[
"obj_id"]] = $child[
"ref_id"];
1367 static function executeQueries(array $queries, $a_order_field =
"", $a_order_dir =
"", $a_offset = 0, $a_limit = 9999)
1372 $subqueries = array();
1373 foreach($queries as $item)
1376 $item = str_replace(
"[[--HAVING",
"HAVING", $item);
1377 $item = str_replace(
"HAVING--]]",
"", $item);
1379 if(!isset($item[
"count"]))
1381 $count_field = $item[
"fields"];
1382 $count_field = array_shift($count_field);
1386 $count_field = $item[
"count"];
1388 $count_query =
"SELECT COUNT(".$count_field.
") AS cnt".$item[
"query"];
1389 $set = $ilDB->query($count_query);
1390 if ($rec = $ilDB->fetchAssoc($set))
1392 $cnt += $rec[
"cnt"];
1395 $subqueries[] =
"SELECT ".implode(
",", $item[
"fields"]).$item[
"query"];
1402 if(
sizeof($subqueries) > 1)
1404 $base = array_shift($subqueries);
1405 $query = $base.
" UNION (".implode(
") UNION (", $subqueries).
")";
1412 if ($a_order_dir !=
"asc" && $a_order_dir !=
"desc")
1414 $a_order_dir =
"asc";
1418 $query.=
" ORDER BY ".$a_order_field.
" ".strtoupper($a_order_dir);
1421 $offset = (int) $a_offset;
1422 $limit = (int) $a_limit;
1423 $ilDB->setLimit($limit, $offset);
1425 $set = $ilDB->query(
$query);
1426 while($rec = $ilDB->fetchAssoc($set))
1432 return array(
"cnt" => $cnt,
"set" =>
$result);
1447 array $a_additional_fields = null, array $a_privacy_fields = null, $a_check_agreement = null)
1451 $result = array(
"cnt"=>0,
"set"=>NULL);
1452 if(
sizeof($a_obj_ids))
1455 $where[] =
"usr_data.usr_id <> ".$ilDB->quote(ANONYMOUS_USER_ID,
"integer");
1458 $where[] = $ilDB->like(
"usr_data.login",
"text",
"%".$a_user_filter.
"%");
1464 if (is_array($a_users))
1467 $where[] = $ilDB->in(
"usr_data.usr_id", $a_users,
false,
"integer");
1473 $fields = array(
"usr_data.usr_id",
"login",
"active");
1476 include_once(
"./Services/Tracking/classes/class.ilLPStatus.php");
1479 foreach($a_obj_ids as $obj_id)
1482 $query =
" FROM usr_data ".$left.
" JOIN read_event ON (read_event.usr_id = usr_data.usr_id".
1483 " AND read_event.obj_id = ".$ilDB->quote($obj_id,
"integer").
")".
1484 " LEFT JOIN ut_lp_marks ON (ut_lp_marks.usr_id = usr_data.usr_id ".
1485 " AND ut_lp_marks.obj_id = ".$ilDB->quote($obj_id,
"integer").
")".
1486 " LEFT JOIN usr_pref ON (usr_pref.usr_id = usr_data.usr_id AND keyword = ".$ilDB->quote(
"language",
"text").
")".
1493 foreach($raw[
"set"] as
$row)
1495 $result[
"set"][$row[
"usr_id"]][
"login"] = $row[
"login"];
1496 $result[
"set"][$row[
"usr_id"]][
"usr_id"] = $row[
"usr_id"];
1497 $result[
"set"][$row[
"usr_id"]][
"objects"][$obj_id] = array(
"status"=>$row[
"status"],
1498 "percentage"=>$row[
"percentage"]);
1500 if($obj_id == $parent_obj_id)
1502 $result[
"set"][$row[
"usr_id"]][
"status_changed"] = $row[
"status_changed"];
1503 $result[
"set"][$row[
"usr_id"]][
"last_access"] = $row[
"last_access"];
1504 $result[
"set"][$row[
"usr_id"]][
"spent_seconds"] = $row[
"spent_seconds"];
1507 foreach($fields as $field)
1509 if(isset($row[$field]))
1511 $result[
"set"][$row[
"usr_id"]][$field] = $row[$field];
1530 if($a_parent_obj_id && $a_users)
1532 include_once(
"Services/Tracking/classes/class.ilLPStatus.php");
1534 $fields = array(
"crs_objectives.objective_id AS obj_id",
"crs_objective_status.user_id AS usr_id",
"title");
1535 $fields[] =
"CASE WHEN status IS NOT NULL THEN ".ilLPStatus::LP_STATUS_COMPLETED_NUM.
" ELSE NULL END AS status";
1538 $where[] =
"crs_objectives.crs_id = ".$ilDB->quote($a_parent_obj_id,
"integer");
1540 $query =
" FROM crs_objectives".
1541 " LEFT JOIN crs_objective_status ON (crs_objectives.objective_id = crs_objective_status.objective_id".
1542 " AND ".$ilDB->in(
"crs_objective_status.user_id", $a_users,
"",
"integer").
")".
1553 $obj_ids = array_keys($a_ref_ids);
1565 $sql =
"SELECT obj_id,".$column.
",SUM(read_count) read_count,SUM(childs_read_count) childs_read_count,".
1566 "SUM(spent_seconds) spent_seconds,SUM(childs_spent_seconds) childs_spent_seconds".
1568 " WHERE ".$ilDB->in(
"obj_id", $obj_ids,
"",
"integer").
1569 " AND yyyy = ".$ilDB->quote($a_year,
"integer");
1572 $sql .=
" AND mm = ".$ilDB->quote($a_month,
"integer");
1574 $sql .=
" GROUP BY obj_id,".$column;
1575 $set = $ilDB->query($sql);
1576 while(
$row = $ilDB->fetchAssoc($set))
1578 $row[
"read_count"] +=
$row[
"childs_read_count"];
1579 $row[
"spent_seconds"] +=
$row[
"childs_spent_seconds"];
1580 $res[
$row[
"obj_id"]][
$row[$column]][
"read_count"] += $row[
"read_count"];
1581 $res[$row[
"obj_id"]][$row[$column]][
"spent_seconds"] += $row[
"spent_seconds"];
1587 $sql =
"SELECT obj_id,".$column.
",SUM(counter) counter".
1588 " FROM obj_user_stat".
1589 " WHERE ".$ilDB->in(
"obj_id", $obj_ids,
"",
"integer").
1590 " AND yyyy = ".$ilDB->quote($a_year,
"integer");
1593 $sql .=
" AND mm = ".$ilDB->quote($a_month,
"integer");
1595 $sql .=
" GROUP BY obj_id,".$column;
1596 $set = $ilDB->query($sql);
1597 while(
$row = $ilDB->fetchAssoc($set))
1599 $res[
$row[
"obj_id"]][
$row[$column]][
"users"] += $row[
"counter"];
1607 global $ilDB, $objDefinition;
1612 include_once
"Services/Tree/classes/class.ilTree.php";
1614 $sql =
"SELECT ".$tree->table_obj_data.
".obj_id,".$tree->table_obj_data.
".type,".
1615 $tree->table_tree.
".".$tree->tree_pk.
",".$tree->table_obj_reference.
".ref_id".
1616 " FROM ".$tree->table_tree.
1617 " ".$tree->buildJoin().
1618 " WHERE ".$ilDB->in($tree->table_obj_data.
".type", $types,
"",
"text");
1619 $set = $ilDB->query($sql);
1621 while(
$row = $ilDB->fetchAssoc($set))
1623 $res[
$row[
"type"]][
"type"] = $row[
"type"];
1624 $res[$row[
"type"]][
"references"]++;
1625 $res[$row[
"type"]][
"objects"][] = $row[
"obj_id"];
1626 if($row[$tree->tree_pk] < 0)
1628 $res[$row[
"type"]][
"deleted"]++;
1632 foreach(
$res as $type => $values)
1634 $res[$type][
"objects"] =
sizeof(array_unique($values[
"objects"]));
1644 $obj_ids = array_keys($a_ref_ids);
1647 $sql =
"SELECT obj_id,hh,SUM(read_count) read_count,SUM(childs_read_count) childs_read_count,".
1648 "SUM(spent_seconds) spent_seconds,SUM(childs_spent_seconds) childs_spent_seconds".
1650 " WHERE ".$ilDB->in(
"obj_id", $obj_ids,
"",
"integer").
1651 " AND yyyy = ".$ilDB->quote($a_year,
"integer");
1654 $sql .=
" AND mm = ".$ilDB->quote($a_month,
"integer");
1656 $sql .=
" GROUP BY obj_id,hh";
1657 $set = $ilDB->query($sql);
1658 while(
$row = $ilDB->fetchAssoc($set))
1660 $row[
"read_count"] +=
$row[
"childs_read_count"];
1661 $row[
"spent_seconds"] +=
$row[
"childs_spent_seconds"];
1663 $res[
$row[
"obj_id"]][(int)
$row[
"hh"]][
"spent_seconds"] +=
$row[
"spent_seconds"];
1672 $set = $ilDB->query(
"SELECT COUNT(*) AS COUNTER,yyyy,mm".
1674 " GROUP BY yyyy, mm".
1675 " ORDER BY yyyy DESC, mm DESC");
1677 while(
$row = $ilDB->fetchAssoc($set))
1680 "count"=>$row[
"counter"]);
1690 $date_compare = $ilDB->in($ilDB->concat(array(array(
"yyyy",
""),
1691 array($ilDB->quote(
"-",
"text"),
""),
1692 array(
"mm",
""))), $a_months,
"",
"text");
1693 $sql =
"DELETE FROM obj_stat".
1694 " WHERE ".$date_compare;
1695 $ilDB->manipulate($sql);
1698 $tables = array(
"obj_lp_stat",
"obj_type_stat",
"obj_user_stat");
1699 foreach($a_months as $month)
1701 $year = substr($month, 0, 4);
1702 $month = substr($month, 5);
1703 $from = $year.str_pad($month, 2,
"0", STR_PAD_LEFT).
"01";
1704 $to = $year.str_pad($month, 2,
"0", STR_PAD_LEFT).
"31";
1706 foreach($tables as $table)
1708 $sql =
"DELETE FROM ".$table.
1709 " WHERE fulldate >= ".$ilDB->quote($from,
"integer").
1710 " AND fulldate <= ".$ilDB->quote($to,
"integer");
1711 $ilDB->manipulate($sql);
1716 static public function searchObjects($a_type, $a_title = null, $a_root = null, $a_hidden = null, $a_preset_obj_ids = null)
1718 global $ilDB, $tree;
1720 if($a_type ==
"lres")
1722 $a_type = array(
'lm',
'sahs',
'htlm',
'dbk');
1725 $sql =
"SELECT r.ref_id,r.obj_id".
1726 " FROM object_data o".
1727 " JOIN object_reference r ON (o.obj_id = r.obj_id)".
1728 " JOIN tree t ON (t.child = r.ref_id)".
1729 " WHERE t.tree = ".$ilDB->quote(1,
"integer");
1731 if(!is_array($a_type))
1733 $sql .=
" AND o.type = ".$ilDB->quote($a_type,
"text");
1737 $sql .=
" AND ".$ilDB->in(
"o.type", $a_type,
"",
"text");
1742 $sql .=
" AND (".$ilDB->like(
"o.title",
"text",
"%".$a_title.
"%").
1743 " OR ".$ilDB->like(
"o.description",
"text",
"%".$a_title.
"%").
")";
1746 if(is_array($a_hidden))
1748 $sql .=
" AND ".$ilDB->in(
"o.obj_id", $a_hidden,
true,
"integer");
1751 if(is_array($a_preset_obj_ids))
1753 $sql .=
" AND ".$ilDB->in(
"o.obj_id", $a_preset_obj_ids,
false,
"integer");
1756 $set = $ilDB->query($sql);
1758 while(
$row = $ilDB->fetchAssoc($set))
1760 if($a_root && $a_root != ROOT_FOLDER_ID)
1764 if($tree->isGrandChild($a_root,
$ref_id))
1766 $res[
$row[
"obj_id"]][] = $row[
"ref_id"];
1773 $res[
$row[
"obj_id"]][] = $row[
"ref_id"];
1787 include_once(
"./Services/Tracking/classes/class.ilLPStatus.php");
1788 foreach($a_obj_ids as $obj_id)
1803 $set = $ilDB->query(
"SELECT COUNT(*) counter, MIN(tstamp) tstamp".
1804 " FROM obj_stat_log");
1805 return $ilDB->fetchAssoc($set);
1818 $column =
"mm,yyyy";
1822 $sql =
"SELECT obj_id,".$column.
",".
1823 "MIN(mem_cnt) mem_cnt_min,AVG(mem_cnt) mem_cnt_avg, MAX(mem_cnt) mem_cnt_max,".
1824 "MIN(in_progress) in_progress_min,AVG(in_progress) in_progress_avg,MAX(in_progress) in_progress_max,".
1825 "MIN(completed) completed_min,AVG(completed) completed_avg,MAX(completed) completed_max,".
1826 "MIN(failed) failed_min,AVG(failed) failed_avg,MAX(failed) failed_max,".
1827 "MIN(not_attempted) not_attempted_min,AVG(not_attempted) not_attempted_avg,MAX(not_attempted) not_attempted_max".
1828 " FROM obj_lp_stat".
1829 " WHERE ".$ilDB->in(
"obj_id", $a_obj_ids,
"",
"integer").
1830 " AND yyyy = ".$ilDB->quote($a_year,
"integer");
1833 $sql .=
" AND mm = ".$ilDB->quote($a_month,
"integer");
1835 $sql .=
" GROUP BY obj_id,".$column;
1836 $set = $ilDB->query($sql);
1837 while(
$row = $ilDB->fetchAssoc($set))
1851 $a_year = date(
"Y");
1854 $agg = strtoupper($a_aggregation);
1857 $sql =
"SELECT type,yyyy,mm,".$agg.
"(cnt_objects) cnt_objects,".$agg.
"(cnt_references) cnt_references,".
1858 "".$agg.
"(cnt_deleted) cnt_deleted FROM obj_type_stat".
1859 " WHERE yyyy = ".$ilDB->quote($a_year,
"integer").
1860 " GROUP BY type,yyyy,mm";
1861 $set = $ilDB->query($sql);
1862 while(
$row = $ilDB->fetchAssoc($set))
1864 $row[
"mm"] = str_pad(
$row[
"mm"], 2,
"0", STR_PAD_LEFT);
1866 "objects" => (
int)
$row[
"cnt_objects"],
1867 "references" => (
int)$row[
"cnt_references"],
1868 "deleted" => (
int)$row[
"cnt_deleted"]