106 $this->rbacsystem = $DIC->rbac()->system();
107 $this->tpl = $DIC[
"tpl"];
108 $this->access = $DIC->access();
109 $this->
user = $DIC->user();
110 $this->tree = $DIC->repositoryTree();
112 $ilCtrl = $DIC->ctrl();
113 $lng = $DIC->language();
114 $ilTabs = $DIC->tabs();
116 $this->ctrl = $ilCtrl;
118 $this->tabs_gui = $ilTabs;
119 $this->gui_object = $a_gui_object;
121 $this->private_notes_enabled =
false;
122 $this->news_enabled =
false;
123 $this->feedback_enabled =
false;
124 $this->learning_progress_enabled =
false;
125 $this->form_action =
"";
126 $this->top_formbuttons = array();
127 $this->hiddenelements = array();
139 $next_class = $this->ctrl->getNextClass($this);
141 $cmd = $this->ctrl->getCmd(
"showSummary");
142 $this->ctrl->setReturn($this,
"showSummary");
146 switch ($next_class) {
148 if ($this->ctrl->isAsynch()) {
159 case "ilpublicuserprofilegui":
160 include_once(
"./Services/User/classes/class.ilPublicUserProfileGUI.php");
162 $user_profile->setBackUrl($this->ctrl->getLinkTarget($this,
"showSummary"));
163 $html = $this->ctrl->forwardCommand($user_profile);
164 $tpl->setContent($html);
167 case "ilcommonactiondispatchergui":
168 include_once(
"Services/Object/classes/class.ilCommonActionDispatcherGUI.php");
170 $this->ctrl->forwardCommand($gui);
174 return $this->$cmd();
187 $this->table_class = $a_val;
205 $this->private_notes_enabled = $a_enable;
213 $this->learning_progress_enabled = $a_enable;
221 $this->availability_enabled = $a_enable;
230 $this->booking_enabled = $a_enable;
239 $this->feedback_enabled = $a_enable;
247 $this->news_enabled = $a_enable;
255 $this->news_editing = $a_enable;
267 $this->block_property[$a_block_type][$a_property] = $a_value;
272 return $this->block_property;
281 $this->section[$this->sec_nr][
"title"] = $a_title;
282 $this->section[$this->sec_nr][
"hidden"] = (bool) $this->hidden;
290 $this->form_action = $a_form_action;
298 $this->form_action =
"";
310 $this->section[$this->sec_nr][
"properties"][] =
311 array(
"name" => $a_name,
"value" => $a_value,
318 public function addPropertyCheckbox($a_name, $a_checkbox_name, $a_checkbox_value, $a_checkbox_label =
"", $a_checkbox_checked =
false)
320 $checkbox =
"<input type=\"checkbox\" name=\"$a_checkbox_name\" value=\"$a_checkbox_value\" id=\"$a_checkbox_name$a_checkbox_value\"";
321 if ($a_checkbox_checked) {
322 $checkbox .=
" checked=\"checked\"";
325 if (strlen($a_checkbox_label)) {
326 $checkbox .=
" <label for=\"$a_checkbox_name$a_checkbox_value\">$a_checkbox_label</label>";
328 $this->section[$this->sec_nr][
"properties"][] =
329 array(
"name" => $a_name,
"value" => $checkbox);
335 public function addPropertyTextinput($a_name, $a_input_name, $a_input_value =
"", $a_input_size =
"", $direct_button_command =
"", $direct_button_label =
"", $direct_button_primary =
false)
337 $input =
"<span class=\"form-inline\"><input class=\"form-control\" type=\"text\" name=\"$a_input_name\" id=\"$a_input_name\"";
338 if (strlen($a_input_value)) {
341 if (strlen($a_input_size)) {
342 $input .=
" size=\"" . $a_input_size .
"\"";
345 if (strlen($direct_button_command) && strlen($direct_button_label)) {
347 if ($direct_button_primary) {
348 $css =
" btn-primary";
350 $input .=
" <input type=\"submit\" class=\"btn btn-default" . $css .
"\" name=\"cmd[$direct_button_command]\" value=\"$direct_button_label\" />";
353 $this->section[$this->sec_nr][
"properties"][] =
354 array(
"name" =>
"<label for=\"$a_input_name\">$a_name</label>",
"value" => $input);
360 public function addButton($a_title, $a_link, $a_frame =
"", $a_position =
"top", $a_primary =
false)
362 if ($a_position ==
"top") {
363 $this->top_buttons[] =
364 array(
"title" => $a_title,
"link" => $a_link,
"target" => $a_frame,
"primary" => $a_primary);
374 if ($a_position ==
"top") {
376 $this->top_formbuttons,
377 array(
"command" => $a_command,
"title" => $a_title)
384 array_push($this->hiddenelements, array(
"name" => $a_name,
"value" => $a_value));
394 $lng->loadLanguageModule(
"meta");
396 include_once(
"./Services/MetaData/classes/class.ilMD.php");
397 $md =
new ilMD($a_rep_obj_id, $a_obj_id, $a_type);
399 if ($md_gen = $md->getGeneral()) {
403 foreach ($md_gen->getDescriptionIds() as $id) {
404 $md_des = $md_gen->getDescription($id);
405 $description = $md_des->getDescription();
411 foreach ($ids = $md_gen->getLanguageIds() as $id) {
412 $md_lan = $md_gen->getLanguage($id);
413 if ($md_lan->getLanguageCode() !=
"") {
414 $langs[] =
$lng->txt(
"meta_l_" . $md_lan->getLanguageCode());
417 $langs = implode(
", ", $langs);
421 foreach ($ids = $md_gen->getKeywordIds() as $id) {
422 $md_key = $md_gen->getKeyword($id);
423 $keywords[] = $md_key->getKeyword();
425 $keywords = implode(
", ", $keywords);
429 if (is_object($lifecycle = $md->getLifecycle())) {
431 foreach (($ids = $lifecycle->getContributeIds()) as $con_id) {
432 $md_con = $lifecycle->getContribute($con_id);
433 if ($md_con->getRole() ==
"Author") {
434 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
435 $md_ent = $md_con->getEntity($ent_id);
436 $author = $author . $sep . $md_ent->getEntity();
445 if (is_object($rights = $md->getRights())) {
446 include_once(
'Services/MetaData/classes/class.ilMDUtils.php');
453 #if(is_object($educational = $md->getEducational())) 455 # $learning_time = $educational->getTypicalLearningTime(); 458 if (is_object($educational = $md->getEducational())) {
459 if ($seconds = $educational->getTypicalLearningTimeSeconds()) {
468 if ($description !=
"") {
477 $lng->txt(
"language"),
481 if ($keywords !=
"") {
483 $lng->txt(
"keywords"),
493 if ($copyright !=
"") {
495 $lng->txt(
"meta_copyright"),
499 if ($learning_time !=
"") {
501 $lng->txt(
"meta_typical_learning_time"),
519 if ($this->booking_enabled) {
521 $booking_adapter->add();
525 $a_obj = $this->gui_object->object;
528 if (is_object($a_obj)) {
530 $type = $a_obj->getType();
531 $ref_id = $a_obj->getRefId();
534 include_once
'Services/WebServices/ECS/classes/class.ilECSServerSettings.php';
537 $lng->txt(
"object_id"),
542 include_once
'Services/PermanentLink/classes/class.ilPermanentLinkGUI.php';
544 $pm->setIncludePermanentLinkText(
false);
545 $pm->setAlignCenter(
false);
547 $lng->txt(
"perma_link"),
553 if ($ilAccess->checkAccess(
"write",
"", $ref_id) ||
554 $ilAccess->checkAccess(
"edit_permissions",
"", $ref_id)) {
555 $obj_id = $a_obj->getId();
558 foreach ($rs as $r) {
559 if (
$tree->isInTree($r)) {
563 if (count($refs) > 1) {
565 foreach ($refs as $r) {
567 $cont_loc->addContextItems($r,
true);
568 $links .= $sep . $cont_loc->getHTML();
573 $lng->txt(
"res_links"),
574 '<div class="small">' . $links .
'</div>' 581 if ($ilAccess->checkAccess(
"write",
"", $ref_id) ||
582 $ilAccess->checkAccess(
"edit_permissions",
"", $ref_id)) {
586 $lng->txt(
"create_date"),
592 include_once
'./Services/Object/classes/class.ilObjectFactory.php';
593 include_once
'./Services/User/classes/class.ilObjUser.php';
601 if (!is_object($ownerObj) || $ownerObj->getType() !=
"usr") {
603 } elseif ($ownerObj->hasPublicProfile()) {
604 $ilCtrl->setParameterByClass(
"ilpublicuserprofilegui",
"user_id", $ownerObj->getId());
607 $ownerObj->getPublicName(),
608 $ilCtrl->getLinkTargetByClass(
"ilpublicuserprofilegui",
"getHTML")
616 require_once
'Services/Tracking/classes/class.ilChangeEvent.php';
622 $count_user_reads = 0;
623 $count_anonymous_reads = 0;
624 foreach ($readEvents as $evt) {
626 $count_anonymous_reads += $evt[
'read_count'];
628 $count_user_reads += $evt[
'read_count'];
636 if ($count_anonymous_reads > 0) {
637 $this->
addProperty($this->lng->txt(
"readcount_anonymous_users"), $count_anonymous_reads);
639 if ($count_user_reads > 0) {
640 $this->
addProperty($this->lng->txt(
"readcount_users"), $count_user_reads);
642 if ($count_users > 0) {
643 $this->
addProperty($this->lng->txt(
"accesscount_registered_users"), $count_users);
651 require_once(
'Services/WebDAV/classes/class.ilDAVActivationChecker.php');
654 require_once
'Services/WebDAV/classes/lock/class.ilWebDAVLockBackend.php';
659 if ($lock = $webdav_lock_backend->getLocksOnObjectId($this->gui_object->object->getId())) {
660 $lock_user =
new ilObjUser($lock->getIliasOwner());
662 $this->lng->txt(
"in_use_by"),
663 $lock_user->getPublicName(),
664 "./ilias.php?user=" . $lock_user->getId() .
'&cmd=showUserProfile&cmdClass=ildashboardgui&cmdNode=1&baseClass=ilDashboardGUI' 692 include_once(
"Services/Block/classes/class.ilColumnGUI.php");
696 if (!$ilCtrl->isAsynch()) {
702 $html = $ilCtrl->forwardCommand($column_gui);
708 $html = $ilCtrl->forwardCommand($column_gui);
727 include_once(
"Services/Block/classes/class.ilColumnGUI.php");
731 if ($ilCtrl->getNextClass() ==
"ilcolumngui" &&
734 $html = $ilCtrl->forwardCommand($column_gui);
736 if (!$ilCtrl->isAsynch()) {
737 if ($this->news_enabled) {
738 $html = $ilCtrl->getHTML($column_gui);
754 $column_gui->setEnableEdit($this->news_editing);
755 $column_gui->setRepositoryMode(
true);
761 $this->open_form_tag = $a_val;
766 $this->close_form_tag = $a_val;
781 $tpl =
new ilTemplate(
"tpl.infoscreen.html",
true,
true,
"Services/InfoScreen");
784 if ($this->form_action ==
"") {
788 require_once
'Services/jQuery/classes/class.iljQueryUtil.php';
792 $tpl->touchBlock(
"hidden_js");
793 if ($this->show_hidden_toggle) {
794 $this->
addButton(
$lng->txt(
"show_hidden_sections"),
"JavaScript:toggleSections(this, '" .
$lng->txt(
"show_hidden_sections") .
"', '" .
$lng->txt(
"hide_visible_sections") .
"');");
802 if (count($this->top_buttons) > 0) {
803 $tpl->addBlockfile(
"TOP_BUTTONS",
"top_buttons",
"tpl.buttons.html");
805 foreach ($this->top_buttons as $button) {
807 $tpl->setCurrentBlock(
"btn_cell");
808 $tpl->setVariable(
"BTN_LINK", $button[
"link"]);
809 $tpl->setVariable(
"BTN_TARGET", $button[
"target"]);
810 $tpl->setVariable(
"BTN_TXT", $button[
"title"]);
811 if ($button[
"primary"]) {
812 $tpl->setVariable(
"BTN_CLASS",
" btn-primary");
814 $tpl->parseCurrentBlock();
819 if ((count($this->top_formbuttons) > 0) && (strlen($this->form_action) > 0)) {
820 $tpl->addBlockfile(
"TOP_FORMBUTTONS",
"top_submitbuttons",
"tpl.submitbuttons.html",
"Services/InfoScreen");
822 foreach ($this->top_formbuttons as $button) {
824 $tpl->setCurrentBlock(
"btn_submit_cell");
825 $tpl->setVariable(
"BTN_COMMAND", $button[
"command"]);
826 $tpl->setVariable(
"BTN_NAME", $button[
"title"]);
827 $tpl->parseCurrentBlock();
832 if (strlen($this->form_action) > 0) {
833 if ($this->open_form_tag) {
834 $tpl->setCurrentBlock(
"formtop");
835 $tpl->setVariable(
"FORMACTION", $this->form_action);
836 $tpl->parseCurrentBlock();
839 if ($this->close_form_tag) {
840 $tpl->touchBlock(
"formbottom");
844 if (count($this->hiddenelements)) {
845 foreach ($this->hiddenelements as $hidden) {
846 $tpl->setCurrentBlock(
"hidden_element");
847 $tpl->setVariable(
"HIDDEN_NAME", $hidden[
"name"]);
848 $tpl->setVariable(
"HIDDEN_VALUE", $hidden[
"value"]);
849 $tpl->parseCurrentBlock();
853 if ($this->availability_enabled) {
861 $tpl->setCurrentBlock(
"learning_progress");
862 $tpl->setVariable(
"LP_TABLE", $html);
863 $tpl->parseCurrentBlock();
867 if ($this->private_notes_enabled && !
$ilSetting->get(
'disable_notes')) {
869 $tpl->setCurrentBlock(
"notes");
870 $tpl->setVariable(
"NOTES", $html);
871 $tpl->parseCurrentBlock();
875 if (is_object($this->gui_object->object)) {
882 if (is_object($this->gui_object->object)) {
887 for (
$i = 1;
$i <= $this->sec_nr;
$i++) {
888 if (is_array($this->section[
$i][
"properties"])) {
890 foreach ($this->section[$i][
"properties"] as $property) {
891 if ($property[
"name"] !=
"") {
892 if ($property[
"link"] ==
"") {
893 $tpl->setCurrentBlock(
"pv");
894 $tpl->setVariable(
"TXT_PROPERTY_VALUE", $property[
"value"]);
895 $tpl->parseCurrentBlock();
897 $tpl->setCurrentBlock(
"lpv");
898 $tpl->setVariable(
"TXT_PROPERTY_LVALUE", $property[
"value"]);
899 $tpl->setVariable(
"LINK_PROPERTY_VALUE", $property[
"link"]);
900 $tpl->parseCurrentBlock();
902 $tpl->setCurrentBlock(
"property_row");
903 $tpl->setVariable(
"TXT_PROPERTY", $property[
"name"]);
904 $tpl->parseCurrentBlock();
906 $tpl->setCurrentBlock(
"property_full_row");
907 $tpl->setVariable(
"TXT_PROPERTY_FULL_VALUE", $property[
"value"]);
908 $tpl->parseCurrentBlock();
913 if ($this->section[$i][
"hidden"]) {
914 $tpl->setVariable(
"SECTION_HIDDEN",
" style=\"display:none;\"");
915 $tpl->setVariable(
"SECTION_ID",
"hidable_" . $i);
917 $tpl->setVariable(
"SECTION_ID", $i);
920 $tpl->setVariable(
"TXT_SECTION", $this->section[$i][
"title"]);
921 $tpl->setCurrentBlock(
"row");
922 $tpl->parseCurrentBlock();
934 if ($this->contextRefId !== null) {
938 return $this->gui_object->object->getRefId();
954 if ($this->contextObjId !== null) {
958 return $this->gui_object->object->getId();
974 if ($this->contentObjType !== null) {
978 return $this->gui_object->object->getType();
994 if (!
$rbacsystem->checkAccess(
'read', $this->getContextRefId())) {
1001 include_once(
"Services/Tracking/classes/class.ilObjUserTracking.php");
1006 include_once
'./Services/Object/classes/class.ilObjectLP.php';
1012 include_once
'Services/Tracking/classes/class.ilLPMarks.php';
1014 $this->lng->loadLanguageModule(
'trac');
1018 $a_tpl->setVariable(
1020 $this->lng->txt(
'learning_progress')
1022 $a_tpl->parseCurrentBlock();
1026 $i_tpl =
new ilTemplate(
"tpl.lp_edit_manual_info_page.html",
true,
true,
"Services/Tracking");
1027 $i_tpl->setVariable(
"INFO_EDITED", $this->lng->txt(
"trac_info_edited"));
1034 array(0 => $this->lng->txt(
'trac_not_completed'),
1035 1 => $this->lng->txt(
'trac_completed')),
1039 $i_tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
"save"));
1040 $a_tpl->setCurrentBlock(
"pv");
1041 $a_tpl->setVariable(
"TXT_PROPERTY_VALUE", $i_tpl->get());
1042 $a_tpl->parseCurrentBlock();
1043 $a_tpl->setCurrentBlock(
"property_row");
1044 $a_tpl->setVariable(
"TXT_PROPERTY", $this->lng->txt(
'trac_status'));
1045 $a_tpl->parseCurrentBlock();
1052 $a_tpl->setCurrentBlock(
"pv");
1054 include_once
'Services/Tracking/classes/class.ilLearningProgress.php';
1056 if ($progress[
'access_time']) {
1057 $a_tpl->setVariable(
1058 "TXT_PROPERTY_VALUE",
1062 $a_tpl->setVariable(
1063 "TXT_PROPERTY_VALUE",
1064 $this->lng->txt(
'trac_not_accessed')
1068 $a_tpl->parseCurrentBlock();
1069 $a_tpl->setCurrentBlock(
"property_row");
1070 $a_tpl->setVariable(
"TXT_PROPERTY", $this->lng->txt(
'trac_last_access'));
1071 $a_tpl->parseCurrentBlock();
1075 $a_tpl->setCurrentBlock(
"pv");
1076 $a_tpl->setVariable(
1077 "TXT_PROPERTY_VALUE",
1078 (
int) $progress[
'visits']
1080 $a_tpl->parseCurrentBlock();
1081 $a_tpl->setCurrentBlock(
"property_row");
1082 $a_tpl->setVariable(
"TXT_PROPERTY", $this->lng->txt(
'trac_visits'));
1083 $a_tpl->parseCurrentBlock();
1089 $a_tpl->setCurrentBlock(
"pv");
1090 $a_tpl->setVariable(
1091 "TXT_PROPERTY_VALUE",
1094 $a_tpl->parseCurrentBlock();
1095 $a_tpl->setCurrentBlock(
"property_row");
1096 $a_tpl->setVariable(
"TXT_PROPERTY", $this->lng->txt(
'trac_spent_time'));
1097 $a_tpl->parseCurrentBlock();
1103 $a_tpl->touchBlock(
"row");
1110 include_once
'Services/Tracking/classes/class.ilLPMarks.php';
1114 $lp_marks->update();
1116 require_once
'Services/Tracking/classes/class.ilLPStatusWrapper.php';
1119 $this->lng->loadLanguageModule(
'trac');
1120 ilUtil::sendSuccess($this->lng->txt(
'trac_updated_status'),
true);
1123 $this->ctrl->redirect($this,
"");
1136 $next_class = $this->ctrl->getNextClass($this);
1137 include_once(
"Services/Notes/classes/class.ilNoteGUI.php");
1139 $this->gui_object->object->getId(),
1141 $this->gui_object->object->getType()
1148 $ref_id = $this->gui_object->object->getRefId();
1149 $has_write = $ilAccess->checkAccess(
"write",
"", $ref_id);
1151 if ($has_write &&
$ilSetting->get(
"comments_del_tutor", 1)) {
1152 $notes_gui->enablePublicNotesDeletion(
true);
1160 $ilAccess->checkAccess(
"edit_permissions",
"", $ref_id)) {
1161 $notes_gui->enableCommentsSettings();
1169 if ($next_class ==
"ilnotegui") {
1170 $html = $this->ctrl->forwardCommand($notes_gui);
1172 $html = $notes_gui->getNotesHTML();
1187 if (strlen($a_section)) {
1190 include_once(
'Services/LDAP/classes/class.ilLDAPRoleGroupMapping.php');
1192 if ($infos = $ldap_mapping->getInfoStrings($this->gui_object->object->getId())) {
1193 $info_combined =
'<div style="color:green;">';
1195 foreach ($infos as $info_string) {
1197 $info_combined .=
'<br />';
1199 $info_combined .= $info_string;
1201 $info_combined .=
'</div>';
1202 $this->
addProperty($this->lng->txt(
'applications'), $info_combined);
1211 $this->
getTabs($this->tabs_gui);
1223 $next_class = $this->ctrl->getNextClass($this);
1224 $force_active = ($next_class ==
"ilnotegui")
1230 $this->ctrl->getLinkTarget($this,
"showSummary"),
1231 array(
"showSummary",
""),
1247 $lng->loadLanguageModule(
"tagging");
1250 include_once(
"Services/Tagging/classes/class.ilTaggingGUI.php");
1252 $tagging_gui->setObject(
1253 $this->gui_object->object->getId(),
1254 $this->gui_object->object->getType()
1259 if ($tags_set->get(
"enable_all_users")) {
1261 $lng->txt(
"tagging_all_users"),
1262 $tagging_gui->getAllUserTagsForObjectHTML()
1267 $lng->txt(
"tagging_my_tags"),
1268 $tagging_gui->getTaggingInputHTML()
1274 include_once(
"Services/Tagging/classes/class.ilTaggingGUI.php");
1276 $tagging_gui->setObject(
1277 $this->gui_object->object->getId(),
1278 $this->gui_object->object->getType()
1280 $tagging_gui->saveInput();
1282 ilUtil::sendSuccess($this->lng->txt(
'msg_obj_modified'),
true);
1283 $this->ctrl->redirect($this,
"");
1290 $this->hidden =
true;
1291 $this->show_hidden_toggle = (bool) $a_add_toggle;
1298 return "<a onClick=\"toggleSections(this, '" .
$lng->txt(
"show_hidden_sections") .
"', '" .
$lng->txt(
"hide_visible_sections") .
"'); return false;\" href=\"#\">" .
$lng->txt(
"show_hidden_sections") .
"</a>";
1307 if (!is_object($this->gui_object) || !is_object($this->gui_object->object)) {
1311 $obj = $this->gui_object->object;
1312 if ($obj->getRefId() <= 0) {
1317 $act->read($obj->getRefId());
1319 $this->lng->loadLanguageModule(
"rep");
1320 $this->
addSection($this->lng->txt(
"rep_activation_availability"));
1330 if (!is_object($this->gui_object) || !is_object($this->gui_object->object)) {
1334 $obj = $this->gui_object->object;
1335 if ($obj->getRefId() <= 0) {
1339 $conditions = ilConditionHandler::_getEffectiveConditionsOfTarget($obj->getRefId(), $obj->getId());
1341 if (
sizeof($conditions)) {
1342 for (
$i = 0;
$i < count($conditions);
$i++) {
1359 $num_optional_required =
1363 $visible_conditions = array();
1364 $passed_optional = 0;
1365 foreach ($conditions as $condition) {
1366 if ($obligatory and !$condition[
'obligatory']) {
1369 if (!$obligatory and $condition[
'obligatory']) {
1373 if (
$tree->isDeleted($condition[
'trigger_ref_id'])) {
1381 $visible_conditions[] = $condition[
'id'];
1384 if (!$obligatory and
$ok) {
1387 if ($passed_optional >= $num_optional_required) {
1395 foreach ($conditions as $condition) {
1396 if (!in_array($condition[
'id'], $visible_conditions)) {
1400 $missing_cond_exist =
true;
1404 $condition[
'trigger_obj_id'],
1405 $condition[
'operator']
1406 ) .
' ' . $condition[
'value'],
1412 if (count($properties) > 0) {
1416 $this->
addSection(sprintf(
$lng->txt(
"preconditions_optional_hint"), $num_optional_required));
1419 foreach ($properties as $p) {
1433 $a_obj = $this->gui_object->object;
1435 $this->lng->loadLanguageModule(
"rep");
1436 $this->lng->loadLanguageModule(
"crs");
1439 if (is_object($a_obj)) {
1441 $act->read($a_obj->getRefId());
1444 $this->lng->txt(
'rep_activation_access'),
1452 $this->lng->txt(
'rep_activation_access'),
1453 $this->lng->txt(
'crs_visibility_limitless')
enableBookingInfo($a_enable=true)
booking info
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
static _parseCopyright($a_copyright)
Parse copyright.
showLearningProgress($a_tpl)
addPreconditions()
Add preconditions.
static _hasCompleted($a_usr_id, $a_obj_id)
hideFurtherSections($a_add_toggle=true)
showLDAPRoleGroupMappingInfo($a_section='')
show LDAP role group mapping info
Class for permanent links.
setBlockProperty($a_block_type, $a_property, $a_value)
This function is supposed to be used for block type specific properties, that should be passed to ilB...
addMetaDataSections($a_rep_obj_id, $a_obj_id, $a_type)
add standard meta data sections
getCenterColumnHTML()
Display center column.
removeFormAction()
remove form action
setFormAction($a_form_action)
set a form action
static translateOperator($a_obj_id, $a_operator)
Translate operator.
static getInstance()
Get singleton instance.
static _updateStatus($a_obj_id, $a_usr_id, $a_obj=null, $a_percentage=false, $a_force_raise=false)
Update status.
setTableClass($a_val)
Set table class.
getRightColumnHTML()
Display right column.
addButton($a_title, $a_link, $a_frame="", $a_position="top", $a_primary=false)
add a property to current section
static _checkCondition($condition, $a_usr_id=0)
checks wether a single condition is fulfilled every trigger object type must implement a static metho...
showSummary()
show summary page
static _getDefaultCopyright()
static _lookupTitle($a_id)
lookup object title
addSection($a_title)
add a new section
static _isActive()
Static getter.
setContentObjType(string $contentObjType)
addFormButton($a_command, $a_title, $a_position="top")
add a form button to the info screen the form buttons are only valid if a form action is set ...
static userExists($a_usr_ids=array())
enablePublicNotes($a_enable=true)
enable public notes
setContextObjId(int $contextObjId)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
addHiddenElement($a_name, $a_value)
static _getAllReferences($a_id)
get all reference ids of object
setColumnSettings($column_gui)
Set column settings.
getTabs(&$tabs_gui)
get tabs
getTableClass()
Get table class.
Embeds booking information into info screen.
static _getInstance()
Get singleton instance of this class.
static calculateEffectiveRequiredTriggers($a_target_ref_id, $a_target_obj_id, $a_target_obj_type='')
calculate number of obligatory items
enableFeedback($a_enable=true)
enable feedback
GUI class for public user profile presentation.
static _enabledLearningProgress()
check wether learing progress is enabled or not
addPropertyTextinput($a_name, $a_input_name, $a_input_value="", $a_input_size="", $direct_button_command="", $direct_button_label="", $direct_button_primary=false)
add a property to current section
setContextRefId(int $contextRefId)
static secondsToString($seconds, $force_with_seconds=false, $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
Column user interface class.
enableLearningProgress($a_enable=true)
enable learning progress
showNotesSection()
show notes section
enableNews($a_enable=true)
enable news
__construct($a_gui_object)
Constructor.
addAvailability()
Add preconditions.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
enableAvailability($a_enable=true)
enable availability
$form_action
a form action parameter.
static _lookupReadEvents($obj_id, $usr_id=null)
Reads all read events which occured on the object which happened after the last time the user caught ...
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
Class ilWebDAVLockBackend.
static getEffectiveOptionalConditionsOfTarget($a_target_ref_id, $a_target_obj_id, $a_obj_type='')
Get optional conditions.
static formatPeriod(ilDateTime $start, ilDateTime $end, $a_skip_starting_day=false)
Format a period of two date Shows: 14.
addPreconditionSection($obj, $conditions, $obligatory=true)
static formSelect( $selected, $varname, $options, $multiple=false, $direct_text=false, $size="0", $style_class="", $attribs="", $disabled=false)
Builds a select form field with options and shows the selected option first.
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
executeCommand()
execute command
static _isActive()
Returns true, if change event tracking is active.
addProperty($a_name, $a_value, $a_link="")
add a property to current section
enableNewsEditing($a_enable=true)
enable news editing
enablePrivateNotes($a_enable=true)
enable notes
saveProgress($redirect=true)
addAccessPeriodProperty()
Add access period property.
addPropertyCheckbox($a_name, $a_checkbox_name, $a_checkbox_value, $a_checkbox_label="", $a_checkbox_checked=false)
add a property to current section
static getInstance($a_obj_id)
Class ilObjectActivation.
static _getProgress($a_user_id, $a_obj_id)
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
addObjectSections()
add standard object section