4 include_once(
"./Services/Tracking/classes/class.ilLPTableBaseGUI.php");
20 function __construct($a_parent_obj, $a_parent_cmd, $a_user_id, $a_obj_id, $a_ref_id, $a_print_view =
false)
24 $this->
setId(
"truop");
25 $this->user_id = $a_user_id;
26 $this->obj_id = $a_obj_id;
27 $this->ref_id = $a_ref_id;
29 parent::__construct($a_parent_obj, $a_parent_cmd);
32 $this->
parseTitle($this->obj_id,
"details", $this->user_id);
39 $this->
addColumn($this->lng->txt(
"title"),
"title");
44 if (in_array(
$l, array(
"last_access",
"first_access",
"read_count",
"spent_seconds",
"mark",
"status",
"percentage")))
48 if (
$l ==
"u_comment")
57 $this->
addColumn($this->lng->txt(
"actions"),
"");
63 $this->
setFormAction($ilCtrl->getFormActionByClass(get_class($this)));
64 $this->
setRowTemplate(
"tpl.user_objects_props_row.html",
"Services/Tracking");
90 include_once
'Services/Tracking/classes/class.ilObjUserTracking.php';
94 $cols[
"first_access"] = array(
95 "txt" => $lng->txt(
"trac_first_access"),
97 $cols[
"last_access"] = array(
98 "txt" => $lng->txt(
"trac_last_access"),
103 $cols[
"read_count"] = array(
104 "txt" => $lng->txt(
"trac_read_count"),
109 $cols[
"spent_seconds"] = array(
110 "txt" => $lng->txt(
"trac_spent_seconds"),
115 $cols[
"percentage"] = array(
116 "txt" => $lng->txt(
"trac_percentage"),
119 $cols[
"status"] = array(
120 "txt" => $lng->txt(
"trac_status"),
122 $cols[
"mark"] = array(
123 "txt" => $lng->txt(
"trac_mark"),
125 $cols[
"u_comment"] = array(
126 "txt" => $lng->txt(
"trac_comment"),
143 include_once(
"./Services/Tracking/classes/class.ilTrQuery.php");
155 $this->filter[
"view_mode"]);
157 if (count($tr_data[
"set"]) == 0 && $this->
getOffset() > 0)
170 $this->filter[
"view_mode"]);
174 foreach($tr_data[
"set"] as $idx =>
$row)
176 include_once
'./Services/Tracking/classes/class.ilLearningProgressAccess.php';
180 foreach(array_keys(
$row) as $col_id)
182 if(!in_array($col_id, array(
"type",
"obj_id",
"ref_id",
"title",
"sort_title")))
184 $tr_data[
"set"][$idx][$col_id] = null;
187 $tr_data[
"set"][$idx][
"privacy_conflict"] =
true;
198 foreach($tr_data[
"set"] as $idx =>
$row)
200 if(
$row[
'obj_id'] == $this->obj_id)
204 else if(isset(
$row[
"sort_title"]))
206 $set[strtolower(
$row[
"sort_title"]).
"__".$idx] =
$row;
210 $set[strtolower(
$row[
"title"]).
"__".$idx] =
$row;
213 unset($tr_data[
"set"]);
222 $set = array_values($set);
225 array_unshift($set, $parent);
232 $this->
setData($tr_data[
"set"]);
244 include_once
'./Services/Object/classes/class.ilObjectLP.php';
246 $collection = $olp->getCollectionInstance();
249 include_once(
"./Services/Form/classes/class.ilSubEnabledFormPropertyGUI.php");
250 include_once(
"./Services/Table/interfaces/interface.ilTableFilterItem.php");
253 include_once(
"./Services/Form/classes/class.ilRadioGroupInputGUI.php");
254 include_once(
"./Services/Form/classes/class.ilRadioOption.php");
257 $ti->addOption(
new ilRadioOption($lng->txt(
"trac_view_mode_collection"),
"coll"));
259 $ti->readFromSession();
260 $this->filter[
"view_mode"] = $ti->getValue();
273 $data[
"percentage"] = NULL;
278 if(!
$data[
"privacy_conflict"])
280 $val = (trim(
$data[$c]) ==
"")
284 if (
$data[$c] !=
"" || $c ==
"status")
297 include_once(
"./Services/Tracking/classes/class.ilLearningProgressBaseGUI.php");
302 if(
$data[
"ref_id"] &&
303 $data[
"type"] !=
"lobj" &&
304 $data[
"type"] !=
"sco" &&
305 $data[
"type"] !=
"st" &&
306 $data[
"type"] !=
"mob")
319 $this->tpl->setCurrentBlock(
'warning_img');
321 $this->tpl->setVariable(
'WARNING_ALT', $this->lng->txt(
'trac_time_passed').$timing);
322 $this->tpl->parseCurrentBlock();
327 case "spent_seconds":
334 include_once(
"./Services/Utilities/classes/class.ilFormat.php");
340 $val =
$data[$c].
"%";
350 if ($c ==
"spent_seconds" &&
355 if ($c ==
"percentage" &&
366 $this->tpl->setCurrentBlock(
"user_field");
367 $this->tpl->setVariable(
"VAL_UF", $val);
368 $this->tpl->parseCurrentBlock();
371 if(
$data[
"privacy_conflict"])
373 $this->tpl->setCurrentBlock(
"permission_bl");
374 $this->tpl->setVariable(
"TXT_NO_PERMISSION", $lng->txt(
"status_no_permission"));
375 $this->tpl->parseCurrentBlock();
378 if(
$data[
"title"] ==
"")
380 $data[
"title"] =
"--".$lng->txt(
"none").
"--";
383 $this->tpl->setVariable(
"ICON_ALT", $lng->txt(
$data[
"type"]));
385 if(in_array(
$data[
'type'], array(
'fold',
'grp')) &&
$data[
'obj_id'] != $this->obj_id)
387 if(
$data[
'type'] ==
'fold')
389 $object_gui =
'ilobjfoldergui';
393 $object_gui =
'ilobjgroupgui';
395 $this->tpl->setCurrentBlock(
'title_linked');
398 if(
$_GET[
"baseClass"] !=
"ilPersonalDesktopGUI" &&
$_GET[
"baseClass"] !=
"ilAdministrationGUI")
400 $old = $ilCtrl->getParameterArrayByClass(
'illplistofobjectsgui');
401 $ilCtrl->setParameterByClass(
'illplistofobjectsgui',
'ref_id',
$data[
"ref_id"]);
402 $ilCtrl->setParameterByClass(
'illplistofobjectsgui',
'details_id',
$data[
"ref_id"]);
403 $ilCtrl->setParameterByClass(
'illplistofobjectsgui',
'user_id', $this->user_id);
404 $url = $ilCtrl->getLinkTargetByClass(array(
'ilrepositorygui', $object_gui,
'illearningprogressgui',
'illplistofobjectsgui'),
'userdetails');
405 $ilCtrl->setParameterByClass(
'illplistofobjectsgui',
'ref_id', $old[
"ref_id"]);
406 $ilCtrl->setParameterByClass(
'illplistofobjectsgui',
'details_id', $old[
"details_id"]);
407 $ilCtrl->setParameterByClass(
'illplistofobjectsgui',
'user_id', $old[
"user_id"]);
414 $this->tpl->setVariable(
"URL_TITLE",
$url);
415 $this->tpl->setVariable(
"VAL_TITLE",
$data[
"title"]);
416 $this->tpl->parseCurrentBlock();
420 $this->tpl->setCurrentBlock(
'title_plain');
421 $this->tpl->setVariable(
"VAL_TITLE",
$data[
"title"]);
422 $this->tpl->parseCurrentBlock();
428 include_once
'./Services/Tree/classes/class.ilPathGUI.php';
433 $this->tpl->setVariable(
'COLL_PATH', $this->lng->txt(
'path').
': '.
$path);
438 include_once
'./Services/Tracking/classes/class.ilLearningProgressAccess.php';
439 if(
$data[
"ref_id"] &&
444 $this->tpl->setCurrentBlock(
"item_command");
445 $ilCtrl->setParameterByClass(
"illplistofobjectsgui",
"userdetails_id",
$data[
"ref_id"]);
446 $this->tpl->setVariable(
"HREF_COMMAND", $ilCtrl->getLinkTargetByClass(
"illplistofobjectsgui",
'edituser'));
447 $this->tpl->setVariable(
"TXT_COMMAND", $lng->txt(
'edit'));
448 $ilCtrl->setParameterByClass(
"illplistofobjectsgui",
"userdetails_id",
"");
449 $this->tpl->parseCurrentBlock();
456 $worksheet->write($a_row, 0, $this->lng->txt(
"type"));
457 $worksheet->write($a_row, 1, $this->lng->txt(
"title"));
463 $worksheet->write($a_row, $cnt, $labels[$c][
"txt"]);
470 $worksheet->write($a_row, 0, $this->lng->txt($a_set[
"type"]));
471 $worksheet->write($a_row, 1, $a_set[
"title"]);
478 $val = $this->
parseValue($c, $a_set[$c], $this->type);
484 $worksheet->write($a_row, $cnt, $val);
491 $a_csv->addColumn($this->lng->txt(
"type"));
492 $a_csv->addColumn($this->lng->txt(
"title"));
497 $a_csv->addColumn($labels[$c][
"txt"]);
505 $a_csv->addColumn($this->lng->txt($a_set[
"type"]));
506 $a_csv->addColumn($a_set[
"title"]);
512 $val = $this->
parseValue($c, $a_set[$c], $this->type);
518 $a_csv->addColumn($val);
fillRowExcel($worksheet, &$a_row, $a_set)
Creates a path for a start and endnode.
const EXTENDED_DATA_LAST_ACCESS
This class represents an option in a radio group.
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setExportFormats(array $formats)
Set available export formats.
setPrintMode($a_value=false)
Toogle print mode.
setShowTemplates($a_value)
Toggle templates.
setExternalSegmentation($a_val)
Set external segmentation.
resetOffset($a_in_determination=false)
Reset offset.
__construct($a_parent_obj, $a_parent_cmd, $a_user_id, $a_obj_id, $a_ref_id, $a_print_view=false)
Constructor.
_getImagePathForStatus($a_status)
Get image path for status.
const EXTENDED_DATA_READ_COUNT
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
parseTitle($a_obj_id, $action, $a_user_id=false)
getSelectableColumns()
Get selectable columns.
parseValue($id, $value, $type)
getOrderDirection()
Get order direction.
static checkPermission($a_permission, $a_ref_id, $a_user_id=null)
wrapper for rbac access checks
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
LP collection of repository objects.
fillHeaderExcel($worksheet, &$a_row)
TableGUI class for learning progress.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
fillRow($data)
Fill table row.
static getObjectsDataForUser($a_user_id, $a_parent_obj_id, $a_parent_ref_id, $a_order_field="", $a_order_dir="", $a_offset=0, $a_limit=9999, array $a_filters=NULL, array $a_additional_fields=NULL, $use_collection=true)
Get all object-based tracking data for user and parent object.
_getStatusText($a_status, $a_lng=null)
Get status alt text.
static formatDate(ilDateTime $date)
Format a date public.
isPercentageAvailable($a_obj_id)
getSelectedColumns()
Get selected columns.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
getItems()
Get user items.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
const EXTENDED_DATA_SPENT_SECONDS
Build table list for objects of given user.
static supportsMark($a_obj_type)
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
static supportsSpentSeconds($a_obj_type)
static img($a_src, $a_alt="", $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
showTimingsWarning($a_ref_id, $a_user_id)
getPrintMode()
Get print mode.
setEnableHeader($a_enableheader)
Set Enable Header.
fillRowCSV($a_csv, $a_set)
setMaxCount($a_max_count)
set max.
setEnableTitle($a_enabletitle)
Set Enable Title.
static getInstance($a_obj_id)
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setLimit($a_limit=0, $a_default_limit=0)