13include_once 
'./Services/Tracking/classes/class.ilLPStatus.php';
 
   23        if (is_array($status_info[
'completed'])) {
 
   24            foreach ($status_info[
'completed'] as $in_progress) {
 
   25                $users = array_merge($users, $in_progress);
 
   27            $users = array_unique($users);
 
   42        foreach ($status_info[
'items'] as $item_id) {
 
   43            $tmp_users = $status_info[
'completed'][$item_id];
 
   48                $users = array_intersect($users, $tmp_users);
 
   51        $users = array_unique($users);
 
   58        $status_info = array();
 
   60        include_once 
"Services/Object/classes/class.ilObjectLP.php";
 
   62        $collection = $olp->getCollectionInstance();
 
   64            $status_info[
"items"] = $collection->getItems($a_obj_id);
 
   66            foreach ($status_info[
"items"] as $item_id) {
 
   67                $status_info[
"completed"][$item_id] = array();
 
   71            $ref_id = end($ref_ids);
 
   72            $possible_items = $collection->getPossibleItems($ref_id);
 
   73            $chapter_ids = array_intersect(
 
   74                array_keys($possible_items),
 
   79            $status_info[
"items"] = $chapter_ids;
 
   84                foreach ($chapter_ids as $item_id) {
 
   85                    $status_info[
"item_titles"][$item_id] = $possible_items[$item_id][
"title"];
 
   87                    if (isset($status[$item_id])) {
 
   88                        foreach ($status[$item_id] as $user_id => $user_status) {
 
   90                                $status_info[
"completed"][$item_id][] = $user_id;
 
  105        if (is_array($info[
"completed"])) {
 
  107            $in_progress = 
false;
 
  108            foreach ($info[
"completed"] as $user_ids) {
 
  110                if (in_array($a_user_id, $user_ids)) {
 
  137        $sql = 
"SELECT subitem_id, completed, usr_id, last_change" .
 
  138            " FROM ut_lp_coll_manual" .
 
  139            " WHERE obj_id = " . 
$ilDB->quote($a_obj_id, 
"integer");
 
  141            $sql .= 
" AND usr_id = " . 
$ilDB->quote($a_user_id, 
"integer");
 
  143        $set = 
$ilDB->query($sql);
 
  144        while ($row = 
$ilDB->fetchAssoc($set)) {
 
  146                $res[$row[
"subitem_id"]][$row[
"usr_id"]] = $row[
"completed"];
 
  148                $res[$row[
"subitem_id"]] = array($row[
"completed"], $row[
"last_change"]);
 
  164            $a_completed = array();
 
  167        include_once 
'./Services/Object/classes/class.ilObjectLP.php';
 
  169        $collection = $olp->getCollectionInstance();
 
  173            foreach ($collection->getItems() as $item_id) {
 
  174                if (isset($existing[$item_id])) {
 
  176                    if ((!$existing[$item_id][0] && in_array($item_id, $a_completed)) ||
 
  177                        ($existing[$item_id][0] && !in_array($item_id, $a_completed))) {
 
  178                        $ilDB->manipulate(
"UPDATE ut_lp_coll_manual SET " .
 
  179                            " completed = " . 
$ilDB->quote(in_array($item_id, $a_completed), 
"integer") .
 
  180                            " , last_change = " . 
$ilDB->quote($now, 
"integer") .
 
  181                            " WHERE obj_id = " . 
$ilDB->quote($a_obj_id, 
"integer") .
 
  182                            " AND usr_id = " . 
$ilDB->quote($a_user_id, 
"integer") .
 
  183                            " AND subitem_id = " . 
$ilDB->quote($item_id, 
"integer"));
 
  185                } elseif (in_array($item_id, $a_completed)) {
 
  186                    $ilDB->manipulate(
"INSERT INTO ut_lp_coll_manual" .
 
  187                        "(obj_id,usr_id,subitem_id,completed,last_change)" .
 
  188                        " VALUES (" . 
$ilDB->quote($a_obj_id, 
"integer") .
 
  189                        " , " . 
$ilDB->quote($a_user_id, 
"integer") .
 
  190                        " , " . 
$ilDB->quote($item_id, 
"integer") .
 
  191                        " , " . 
$ilDB->quote(1, 
"integer") .
 
  192                        " , " . 
$ilDB->quote($now, 
"integer") . 
")");
 
  197        include_once 
"Services/Tracking/classes/class.ilLPStatusWrapper.php";
 
An exception for terminatinating execution or to throw for unit testing.
static _setObjectStatus($a_obj_id, $a_user_id, array $a_completed=null)
static _getInProgress($a_obj_id)
static _getCompleted($a_obj_id)
static _getObjectStatus($a_obj_id, $a_user_id=null)
determineStatus($a_obj_id, $a_user_id, $a_obj=null)
Determine status.
static _getStatusInfo($a_obj_id)
static _getStatusInfo($a_obj_id)
Reads informations about the object e.g test results, tlt, number of visits.
static _updateStatus($a_obj_id, $a_usr_id, $a_obj=null, $a_percentage=false, $a_force_raise=false)
Update status.
static _getCompleted($a_obj_id)
Static function to read the users who have the status 'completed'.
Abstract class ilLPStatus for all learning progress modes E.g ilLPStatusManual, ilLPStatusObjectives ...
const LP_STATUS_COMPLETED_NUM
const LP_STATUS_IN_PROGRESS_NUM
const LP_STATUS_NOT_ATTEMPTED_NUM
static getInstance($a_obj_id)
static _getAllReferences($a_id)
get all reference ids of object
foreach($_POST as $key=> $value) $res