4 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
5 include_once
'./Services/Search/classes/class.ilSearchSettings.php';
6 require_once(
'./Services/Repository/classes/class.ilObjectPlugin.php');
21 public function __construct($a_parent_obj, $a_parent_cmd =
"", $a_template_context =
"")
26 $this->lng->loadLanguageModule(
"meta");
28 include_once(
"./Services/Object/classes/class.ilObjectLP.php");
31 if (!$this->anonymized && $this->obj_id) {
32 include_once
"Services/Object/classes/class.ilObjectLP.php";
34 $this->anonymized = $olp->isAnonymized();
47 if (!
$ilCtrl->getNextClass($this)) {
62 $to_hide =
$_POST[
"item_id"];
66 $to_hide = array((
int)
$_GET[
"hide"]);
69 case "mailselectedusers":
70 if (!
sizeof(
$_POST[
"uid"])) {
73 $this->
sendMail(
$_POST[
"uid"], $this->parent_obj, $this->parent_cmd);
77 case 'addToClipboard':
78 if (!
sizeof(
$_POST[
'uid'])) {
94 $value = array_unique(array_merge((array) $obj->getValue(), $to_hide));
95 $obj->setValue($value);
96 $obj->writeToSession();
99 if (isset($_REQUEST[
"tbltplcrt"])) {
100 $ilCtrl->setParameter($this->parent_obj,
"tbltplcrt", $_REQUEST[
"tbltplcrt"]);
102 if (isset($_REQUEST[
"tbltpldel"])) {
103 $ilCtrl->setParameter($this->parent_obj,
"tbltpldel", $_REQUEST[
"tbltpldel"]);
106 $ilCtrl->redirect($this->parent_obj, $this->parent_cmd);
109 return parent::executeCommand();
113 protected function sendMail(array $a_user_ids, $a_parent_obj, $a_parent_cmd)
117 require_once
'Services/Mail/classes/class.ilMailFormCall.php';
120 foreach ($a_user_ids as $usr_id) {
128 $ref_id = (int) $_REQUEST[
"ref_id"];
131 $tmpl_id = $obj_lp->getMailTemplateId();
140 include_once
'./Services/Link/classes/class.ilLink.php';
142 $sig = rawurlencode(base64_encode($sig));
153 'rcp_to' => implode(
',', $rcps),
170 protected function searchObjects(array
$filter, $permission, array $preset_obj_ids = null, $a_check_lp_activation =
true)
174 $ilObjDataCache = $DIC[
'ilObjDataCache'];
176 include_once
'./Services/Search/classes/class.ilQueryParser.php';
179 $query_parser->setMinWordLength(0);
181 $query_parser->parse();
182 if (!$query_parser->validate()) {
188 if ($filter[
"type"] ==
"lres") {
189 $filter[
"type"] = array(
'lm',
'sahs',
'htlm');
191 $filter[
"type"] = array($filter[
"type"]);
194 include_once
'Services/Search/classes/Like/class.ilLikeObjectSearch.php';
196 $object_search->setFilter($filter[
"type"]);
197 if ($preset_obj_ids) {
198 $object_search->setIdFilter($preset_obj_ids);
200 $res = &$object_search->performSearch();
203 $res->setRequiredPermission($permission);
206 $res->setMaxHits(1000);
208 if ($a_check_lp_activation) {
209 $res->addObserver($this,
"searchFilterListener");
212 if (!$this->filter[
"area"]) {
213 $res->filter(ROOT_FOLDER_ID,
false);
215 $res->filter($this->filter[
"area"],
false);
219 foreach (
$res->getResults() as $obj_data) {
220 $objects[$obj_data[
'obj_id']][] = $obj_data[
'ref_id'];
224 if (
$res->isLimitReached()) {
225 $this->lng->loadLanguageModule(
"search");
229 return $objects ? $objects : array();
239 if (is_array($this->filter[
"hide"]) && in_array($a_data[
"obj_id"], $this->filter[
"hide"])) {
243 if (get_class($olp) !=
"ilObjectLP" &&
255 public function initBaseFilter($a_split_learning_resources =
false, $a_include_no_status_filter =
true)
260 $ilObjDataCache = $DIC[
'ilObjDataCache'];
265 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
269 $si->readFromSession();
270 if (!
$si->getValue()) {
271 $si->setValue(
"crs");
273 $this->filter[
"type"] =
$si->getValue();
276 include_once(
"./Services/Form/classes/class.ilMultiSelectInputGUI.php");
279 $msi->readFromSession();
280 $this->filter[
"hide"] = $msi->getValue();
281 if ($this->filter[
"hide"]) {
284 $type = $types[
"type"];
286 if (
$type ==
'lres') {
287 $type = array(
'lm',
'sahs',
'htlm');
291 foreach ($this->filter[
"hide"] as $obj_id) {
292 if (in_array($ilObjDataCache->lookupType($obj_id),
$type)) {
293 $options[$obj_id] = $ilObjDataCache->lookupTitle($obj_id);
296 $msi->setOptions($options);
300 include_once(
"./Services/Form/classes/class.ilTextInputGUI.php");
302 $ti->setMaxLength(64);
305 $ti->readFromSession();
306 $this->filter[
"query"] = $ti->getValue();
309 include_once(
"./Services/Form/classes/class.ilRepositorySelectorInputGUI.php");
311 $rs->setSelectText(
$lng->txt(
"trac_select_area"));
313 $rs->readFromSession();
314 $this->filter[
"area"] = $rs->getValue();
317 if ($a_include_no_status_filter) {
318 include_once(
"./Services/Form/classes/class.ilCheckboxInputGUI.php");
321 $cb->readFromSession();
322 $this->filter[
"status"] = $cb->getChecked();
336 $tree = $DIC[
'tree'];
339 include_once
'./Services/Link/classes/class.ilLink.php';
341 if (!count($ref_ids)) {
344 foreach ($ref_ids as $ref_id) {
347 $path_full = $tree->getPathFull($ref_id);
348 foreach ($path_full as
$data) {
349 if (++$counter < (count($path_full) - 1)) {
352 $path .=
" » ";
353 if ($ref_id != $data[
'ref_id']) {
354 $path .= $data[
'title'];
356 $path .= (
'<a target="_top" href="' .
358 $data[
'title'] .
'</a>');
374 protected function getPossibleTypes($a_split_learning_resources =
false, $a_include_digilib =
false, $a_allow_undefined_lp =
false)
379 $ilPluginAdmin = $DIC[
'ilPluginAdmin'];
383 if ($a_split_learning_resources) {
384 $options[
'lm'] =
$lng->txt(
'objs_lm');
385 $options[
'sahs'] =
$lng->txt(
'objs_sahs');
386 $options[
'htlm'] =
$lng->txt(
'objs_htlm');
388 $options[
'lres'] =
$lng->txt(
'obj_lrss');
391 $options[
'crs'] =
$lng->txt(
'objs_crs');
392 $options[
'grp'] =
$lng->txt(
'objs_grp');
393 $options[
'exc'] =
$lng->txt(
'objs_exc');
394 $options[
'file'] =
$lng->txt(
'objs_file');
395 $options[
'mcst'] =
$lng->txt(
'objs_mcst');
396 $options[
'svy'] =
$lng->txt(
'objs_svy');
397 $options[
'tst'] =
$lng->txt(
'objs_tst');
398 $options[
'prg'] =
$lng->txt(
'objs_prg');
399 $options[
'iass'] =
$lng->txt(
'objs_iass');
400 $options[
'copa'] =
$lng->txt(
'objs_copa');
401 $options[
'cmix'] =
$lng->txt(
'objs_cmix');
402 $options[
'lti'] =
$lng->txt(
'objs_lti');
403 $options[
'lso'] =
$lng->txt(
'objs_lso');
405 if ($a_allow_undefined_lp) {
406 $options[
"webr"] =
$lng->txt(
"objs_webr");
407 $options[
"wiki"] =
$lng->txt(
"objs_wiki");
408 $options[
"blog"] =
$lng->txt(
"objs_blog");
409 $options[
"prtf"] =
$lng->txt(
"objs_prtf");
410 $options[
"prtt"] =
$lng->txt(
"objs_prtt");
414 include_once
'Services/Repository/classes/class.ilRepositoryObjectPluginSlot.php';
415 $pl_names = $ilPluginAdmin->getActivePluginsForSlot(
IL_COMP_SERVICE,
"Repository",
"robj");
416 foreach ($pl_names as $pl) {
417 $pl_id = $ilPluginAdmin->getId(
IL_COMP_SERVICE,
"Repository",
"robj", $pl);
434 $pos = strrpos($id,
"_");
435 if ($pos !==
false) {
436 $function = strtoupper(substr($id, $pos + 1));
437 if (in_array($function, array(
"MIN",
"MAX",
"SUM",
"AVG",
"COUNT"))) {
438 $id = substr($id, 0, $pos);
442 if (trim($value) ==
"" && $id !=
"status") {
443 if ($id ==
"title" &&
444 get_class($this) !=
"ilTrObjectUsersPropsTableGUI" &&
445 get_class($this) !=
"ilTrMatrixTableGUI") {
446 return "--" .
$lng->txt(
"none") .
"--";
454 case 'status_changed':
466 case "spent_seconds":
478 $value = $value .
"%";
489 $value =
$lng->txt(
"gender_" . $value);
493 include_once(
"./Services/Tracking/classes/class.ilLearningProgressBaseGUI.php");
500 $lng->loadLanguageModule(
"meta");
501 $value =
$lng->txt(
"meta_l_" . $value);
505 $value =
$lng->txt(
"meta_c_" . $value);
515 foreach ((array) $this->filter as $id => $value) {
534 case "matriculation":
545 if ($value !==
false) {
554 case "spent_seconds":
555 if (is_array($value) && implode(
"", $value)) {
564 case 'status_changed':
566 if ($value[
"from"]) {
577 if ($value[
"from"]) {
579 $result[$id][
"from"] = substr(
$result[$id][
"from"], 0, -8) .
"00:00:00";
583 $result[$id][
"to"] = substr(
$result[$id][
"to"], 0, -8) .
"23:59:59";
597 $mode = $olp->getCurrentMode();
615 protected function parseTitle($a_obj_id, $action, $a_user_id =
false)
620 $ilObjDataCache = $DIC[
'ilObjDataCache'];
625 if ($a_user_id !=
$ilUser->getId()) {
630 $user .=
", " . $a_user->getFullName();
633 if ($a_obj_id != ROOT_FOLDER_ID) {
634 $this->
setTitle(
$lng->txt($action) .
": " . $ilObjDataCache->lookupTitle($a_obj_id) . $user);
637 $this->
setDescription($this->lng->txt(
'trac_mode') .
": " . $olp->getModeText($olp->getCurrentMode()));
653 $ilObjDataCache = $DIC[
'ilObjDataCache'];
655 $ilClientIniFile = $DIC[
'ilClientIniFile'];
668 include_once
'./Services/Link/classes/class.ilLink.php';
671 $data[
$lng->txt(
"trac_name_of_installation")] = $ilClientIniFile->readVariable(
'client',
'name');
674 $data[
$lng->txt(
"trac_object_name")] = $ilObjDataCache->lookupTitle($this->obj_id);
690 $a_excel->
setCell($a_row, 0, $caption);
691 $a_excel->
setCell($a_row, 1, $value);
700 $a_csv->addColumn(strip_tags($caption));
701 $a_csv->addColumn(strip_tags($value));
710 if ($timing_cache->isWarningRequired($a_user_id)) {
712 if ($timings[
'item'][
'changeable'] && $timings[
'user'][$a_user_id][
'end']) {
713 $end = $timings[
'user'][$a_user_id][
'end'];
714 } elseif ($timings[
'item'][
'suggestion_end']) {
715 $end = $timings[
'item'][
'suggestion_end'];
725 $seconds = ((int) $seconds > 0) ? $seconds : 0;
726 if ($a_shorten_zero && !$seconds) {
730 $hours = floor($seconds / 3600);
731 $rest = $seconds % 3600;
733 $minutes = floor(
$rest / 60);
740 return sprintf(
"%dh%02dm", $hours, $minutes);
748 if (is_numeric($a_value)) {
750 $a_value = (int) $a_value;
751 if ($a_value <= $threshold) {
752 if (!$a_force_number) {
753 return "0-" . $threshold;
762 protected function buildValueScale($a_max_value, $a_anonymize =
false, $a_format_seconds =
false)
766 $step = $a_max_value / 10;
767 $base = ceil(log($step, 10));
768 $fac = ceil($step / pow(10, (
$base - 1)));
769 $step = pow(10,
$base - 1) * $fac;
774 $ticks = range(0, $a_max_value + $step, $step);
776 $value_ticks = array(0 => 0);
777 foreach ($ticks as $tick) {
778 $value = $tvalue = $tick;
783 if ($a_format_seconds) {
786 $value_ticks[$value] = $tvalue;
799 for ($loop = 0; $loop < 10; $loop++) {
800 $year = date(
"Y") - $loop;
801 $options[$year] = $year;
802 for ($loop2 = 12; $loop2 > 0; $loop2--) {
803 $month = str_pad($loop2, 2,
"0", STR_PAD_LEFT);
804 if ($year . $month <= date(
"Ym")) {
806 $caption = $year .
" / " .
$lng->txt(
"month_" . $month .
"_long");
808 $caption = $year .
"/" . $month;
810 $options[$year .
"-" . $month] = $caption;
828 for ($loop = 1; $loop < 13; $loop++) {
829 $month = str_pad($loop, 2,
"0", STR_PAD_LEFT);
830 if ($a_year .
"-" . $month <= date(
"Y-m")) {
832 $caption =
$lng->txt(
"month_" . $month .
"_long");
834 $caption =
$lng->txt(
"month_" . $month .
"_short");
836 $all[$a_year .
"-" . $month] = $caption;
849 $cols = $privacy_fields = array();
851 include_once(
"./Services/User/classes/class.ilUserProfile.php");
853 $up->skipGroup(
"preferences");
854 $up->skipGroup(
"settings");
855 $up->skipGroup(
"interests");
856 $ufs = $up->getStandardFields();
859 $cols[
"login"] = array(
860 "txt" =>
$lng->txt(
"login"),
863 if (!$this->anonymized) {
864 $cols[
"firstname"] = array(
865 "txt" =>
$lng->txt(
"firstname"),
867 $cols[
"lastname"] = array(
868 "txt" =>
$lng->txt(
"lastname"),
873 include_once
'Services/Tracking/classes/class.ilObjUserTracking.php';
876 $cols[
"first_access"] = array(
877 "txt" =>
$lng->txt(
"trac_first_access"),
879 $cols[
"last_access"] = array(
880 "txt" =>
$lng->txt(
"trac_last_access"),
884 $cols[
"read_count"] = array(
885 "txt" =>
$lng->txt(
"trac_read_count"),
890 $cols[
"spent_seconds"] = array(
891 "txt" =>
$lng->txt(
"trac_spent_seconds"),
896 $cols[
"percentage"] = array(
897 "txt" =>
$lng->txt(
"trac_percentage"),
903 if ($olp->isActive()) {
904 $cols[
"status"] = array(
905 "txt" =>
$lng->txt(
"trac_status"),
908 $cols[
'status_changed'] = array(
909 'txt' =>
$lng->txt(
'trac_status_changed'),
914 $cols[
"mark"] = array(
915 "txt" =>
$lng->txt(
"trac_mark"),
919 $cols[
"u_comment"] = array(
920 "txt" =>
$lng->txt(
"trac_comment"),
923 $cols[
"create_date"] = array(
924 "txt" =>
$lng->txt(
"create_date"),
926 $cols[
"language"] = array(
927 "txt" =>
$lng->txt(
"language"),
931 if (!$this->anonymized &&
932 ($a_in_course || $a_in_group)) {
934 include_once(
'Services/PrivacySecurity/classes/class.ilPrivacySettings.php');
937 foreach ($ufs as
$f => $fd) {
938 if (!isset($cols[
$f]) && $f !=
"username" && !$fd[
"lists_hide"]) {
940 !($fd[
"course_export_fix_value"] ||
$ilSetting->get(
"usr_settings_course_export_" . $f))) {
944 !($fd[
"group_export_fix_value"] ||
$ilSetting->get(
"usr_settings_group_export_" . $f))) {
949 "txt" =>
$lng->txt($f),
952 $privacy_fields[] =
$f;
957 include_once
'./Services/User/classes/class.ilUserDefinedFields.php';
960 $user_defined_fields = $user_defined_fields->getCourseExportableFields();
962 $user_defined_fields = $user_defined_fields->getGroupExportableFields();
964 foreach ($user_defined_fields as $definition) {
966 $f =
"udf_" . $definition[
"field_id"];
968 "txt" => $definition[
"field_name"],
971 $privacy_fields[] =
$f;
977 return array($cols, $privacy_fields);
985 $users = (array)
$_POST[
'uid'];
986 include_once
'./Services/User/classes/class.ilUserClipboard.php';
991 $GLOBALS[
'DIC'][
'lng']->loadLanguageModule(
'user');
992 ilUtil::sendSuccess($this->lng->txt(
'clipboard_user_added'),
true);
static _lookupLogin($a_user_id)
lookup login
const LP_MODE_CMIX_COMPLETED
anonymizeValue($a_value, $a_force_number=false)
const EXTENDED_DATA_LAST_ACCESS
setDescription($a_val)
Set description.
buildPath($ref_ids)
Build path with deep-link.
getSelectableUserColumns($a_in_course=false, $a_in_group=false)
const LP_MODE_CMIX_COMPLETED_OR_PASSED
static isTypePluginWithLP($a_type, $a_active_status=true)
Check whether a repository type is a plugin which has active learning progress.
static _getInstance()
Get instance.
static lookupTxtById($plugin_id, $lang_var)
static getInstance($a_usr_id)
Get singelton instance.
static _getImagePathForStatus($a_status)
Get image path for status.
const LP_MODE_CMIX_PASSED_WITH_FAILED
static _lookupFullname($a_user_id)
Lookup Full Name.
static _getStatusText($a_status, $a_lng=null)
Get status alt text.
getMonthsYear($a_year=null, $a_short=false)
const LP_MODE_CMIX_PASSED
searchObjects(array $filter, $permission, array $preset_obj_ids=null, $a_check_lp_activation=true)
Search objects that match current filters.
resetOffset($a_in_determination=false)
Reset offset.
getFilterItemByPostVar($a_post_var)
const EXTENDED_DATA_READ_COUNT
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
static setUseRelativeDates($a_status)
set use relative dates
parseTitle($a_obj_id, $action, $a_user_id=false)
getPossibleTypes($a_split_learning_resources=false, $a_include_digilib=false, $a_allow_undefined_lp=false)
Get possible subtypes.
parseValue($id, $value, $type)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
addToClipboard()
Add selected users to clipboard.
const LP_MODE_CMIX_COMPL_WITH_FAILED
static _lookupObjectId($a_ref_id)
lookup object id
initBaseFilter($a_split_learning_resources=false, $a_include_no_status_filter=true)
Init filter.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
const LP_MODE_VISITED_PAGES
static _enabledUserRelatedData()
check wether user related tracking is enabled or not
static secondsToString($seconds, $force_with_seconds=false, $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
foreach($_POST as $key=> $value) $res
TableGUI class for learning progress.
getExportMeta()
Build export meta data.
const LP_MODE_TEST_PASSED
setDisableFilterHiding($a_val=true)
Set disable filter hiding.
buildValueScale($a_max_value, $a_anonymize=false, $a_format_seconds=false)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
isPercentageAvailable($a_obj_id)
setCell($a_row, $a_col, $a_value, $a_datatype=null)
Set cell value.
static _lookupOwner($a_id)
lookup object owner
searchFilterListener($a_ref_id, $a_data)
Listener for SearchResultFilter Checks wheather the object is hidden and mode is not LP_MODE_DEACTIVA...
fillMetaExcel(ilExcel $a_excel, &$a_row)
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
static img($a_src, $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
static _lookupType($a_id, $a_reference=false)
lookup object type
static getInstanceByRefId($ref_id)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
const EXTENDED_DATA_SPENT_SECONDS
writeFilterToSession()
Write filter values to session.
static supportsMark($a_obj_type)
sendMail(array $a_user_ids, $a_parent_obj, $a_parent_cmd)
__construct($a_parent_obj, $a_parent_cmd="", $a_template_context="")
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
determineSelectedFilters()
Determine selected filters.
static supportsSpentSeconds($a_obj_type)
getMonthsFilter($a_short=false)
formatSeconds($seconds, $a_shorten_zero=false)
__construct(Container $dic, ilPlugin $plugin)
showTimingsWarning($a_ref_id, $a_user_id)
const LP_MODE_CMIX_COMPL_OR_PASSED_WITH_FAILED
static getLogger($a_component_id)
Get component logger.
static _getInstance()
Get instance of ilPrivacySettings.
getCurrentFilter($as_query=false)
static redirect($a_script)
const LP_MODE_LTI_OUTCOME
static getInstance($a_obj_id)
resetFilter()
Reset filter.
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
static & _getTimings($a_ref_id)