3 include_once(
"./Services/Object/classes/class.ilObjectGUI.php");
17 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
19 parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
22 $this->lng->loadLanguageModule(
'rep');
23 $this->lng->loadLanguageModule(
'cmps');
30 $next_class = $this->ctrl->getNextClass($this);
31 $cmd = $this->ctrl->getCmd();
35 if(!$ilAccess->checkAccess(
'write',
'', $this->object->getRefId()))
37 $ilErr->raiseError($this->lng->txt(
'no_permission'), $ilErr->WARNING);
42 case 'ilpermissiongui':
43 $this->tabs_gui->setTabActive(
'perm_settings');
44 include_once(
"Services/AccessControl/classes/class.ilPermissionGUI.php");
46 $this->ctrl->forwardCommand($perm_gui);
60 $this->tabs_gui->addTab(
"settings",
61 $this->lng->txt(
"settings"),
62 $this->ctrl->getLinkTarget($this,
"view"));
64 $this->tabs_gui->addTab(
"icons",
65 $this->lng->txt(
"rep_custom_icons"),
66 $this->ctrl->getLinkTarget($this,
"customIcons"));
68 $this->tabs_gui->addTab(
"modules",
69 $this->lng->txt(
"cmps_repository_object_types"),
70 $this->ctrl->getLinkTarget($this,
"listModules"));
72 if ($rbacsystem->checkAccess(
'edit_permission',$this->object->getRefId()))
74 $this->tabs_gui->addTab(
"perm_settings",
75 $this->lng->txt(
"perm_settings"),
76 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm"));
82 $this->tabs_gui->activateTab(
"settings");
89 $this->tpl->setContent($a_form->getHTML());
96 include_once(
'Services/Form/classes/class.ilPropertyFormGUI.php');
98 $form->setTitle($this->lng->txt(
"settings"));
99 $form->setFormAction($this->ctrl->getFormAction($this,
'saveSettings'));
103 "flat" => $this->lng->txt(
"flatview"),
104 "tree" => $this->lng->txt(
"treeview")
108 $si->setInfo($this->lng->txt(
""));
109 if ($ilSetting->get(
"default_repository_view") ==
"tree")
111 $si->setValue(
"tree");
115 $si->setValue(
"flat");
121 "" => $this->lng->txt(
"adm_rep_tree_only_container"),
122 "tree" => $this->lng->txt(
"adm_all_resource_types")
127 $radg->
setValue($ilSetting->get(
"repository_tree_pres"));
128 $op1 =
new ilRadioOption($this->lng->txt(
"adm_rep_tree_only_cntr"),
"",
129 $this->lng->txt(
"adm_rep_tree_only_cntr_info"));
130 $radg->addOption($op1);
132 $op2 =
new ilRadioOption($this->lng->txt(
"adm_rep_tree_all_types"),
"all_types",
133 $this->lng->txt(
"adm_rep_tree_all_types_info"));
136 $cb =
new ilCheckboxInputGUI($this->lng->txt(
"adm_rep_tree_limit_grp_crs"),
"rep_tree_limit_grp_crs");
137 $cb->setChecked($ilSetting->get(
"rep_tree_limit_grp_crs"));
138 $cb->
setInfo($this->lng->txt(
"adm_rep_tree_limit_grp_crs_info"));
139 $op2->addSubItem($cb);
141 $radg->addOption($op2);
143 $form->addItem($radg);
172 $cb->
setInfo($this->lng->txt(
"enable_trash_info"));
173 if ($ilSetting->get(
"enable_trash"))
175 $cb->setChecked(
true);
180 require_once
'Services/Tracking/classes/class.ilChangeEvent.php';
181 $this->lng->loadLanguageModule(
"trac");
182 $event =
new ilCheckboxInputGUI($this->lng->txt(
'trac_repository_changes'),
'change_event_tracking');
184 $form->addItem($event);
187 include_once
"Services/Administration/classes/class.ilAdministrationSettingsFormHandler.php";
198 $lists->setTitle($this->lng->txt(
"rep_object_lists"));
199 $form->addItem($lists);
201 $sdesc =
new ilCheckboxInputGUI($this->lng->txt(
"adm_rep_shorten_description"),
"rep_shorten_description");
202 $sdesc->
setInfo($this->lng->txt(
"adm_rep_shorten_description_info"));
203 $sdesc->setChecked($ilSetting->get(
"rep_shorten_description"));
204 $form->addItem($sdesc);
206 $sdesclen =
new ilTextInputGUI($this->lng->txt(
"adm_rep_shorten_description_length"),
"rep_shorten_description_length");
207 $sdesclen->
setValue($ilSetting->get(
"rep_shorten_description_length"));
208 $sdesclen->setSize(3);
209 $sdesc->addSubItem($sdesclen);
212 $cb =
new ilCheckboxInputGUI($this->lng->txt(
"adm_item_cmd_asynch"),
"item_cmd_asynch");
213 $cb->
setInfo($this->lng->txt(
"adm_item_cmd_asynch_info"));
214 $cb->setChecked($ilSetting->get(
"item_cmd_asynch"));
218 $pl =
new ilCheckboxInputGUI($this->lng->txt(
'adm_show_comments_tagging_in_lists'),
'comments_tagging_in_lists');
220 $pl->setChecked($ilSetting->get(
'comments_tagging_in_lists'));
224 $form->addCommandButton(
'saveSettings', $this->lng->txt(
'save'));
234 if ($form->checkInput())
236 $ilSetting->set(
"default_repository_view",
$_POST[
"default_rep_view"]);
238 $ilSetting->set(
"repository_tree_pres",
$_POST[
"tree_pres"]);
239 if (
$_POST[
"tree_pres"] ==
"")
241 $_POST[
"rep_tree_limit_grp_crs"] =
"";
243 if (
$_POST[
"rep_tree_limit_grp_crs"] && !$ilSetting->get(
"rep_tree_limit_grp_crs"))
245 $_POST[
"rep_tree_synchronize"] =
true;
247 else if (!
$_POST[
"rep_tree_synchronize"] && $ilSetting->get(
"rep_tree_synchronize"))
249 $_POST[
"rep_tree_limit_grp_crs"] =
false;
251 $ilSetting->set(
"rep_tree_limit_grp_crs",
$_POST[
"rep_tree_limit_grp_crs"]);
256 $ilSetting->set(
"enable_trash",
$_POST[
"enable_trash"]);
258 $ilSetting->set(
"rep_shorten_description", $form->getInput(
'rep_shorten_description'));
259 $ilSetting->set(
"rep_shorten_description_length", (
int)$form->getInput(
'rep_shorten_description_length'));
260 $ilSetting->set(
'item_cmd_asynch',(
int)
$_POST[
'item_cmd_asynch']);
261 $ilSetting->set(
'comments_tagging_in_lists',(
int) $_POST[
'comments_tagging_in_lists']);
263 require_once
'Services/Tracking/classes/class.ilChangeEvent.php';
264 if ($form->getInput(
'change_event_tracking'))
274 $this->ctrl->redirect($this,
"view");
277 $form->setValuesByPost();
283 $this->tabs_gui->activateTab(
"icons");
290 $this->tpl->setContent($a_form->getHTML());
297 include_once
"Services/Form/classes/class.ilPropertyFormGUI.php";
298 include_once
"Services/Form/classes/class.ilCombinationInputGUI.php";
300 $form->setTitle($this->lng->txt(
"rep_custom_icons"));
301 $form->setFormAction($this->ctrl->getFormAction($this,
'saveCustomIcons'));
304 $cb->
setInfo($this->lng->txt(
"enable_custom_icons_info"));
305 $cb->setChecked($ilSetting->get(
"custom_icons"));
310 $form->addItem($size_big);
314 $width->setValue($ilSetting->get(
"custom_icon_big_width"));
315 $size_big->addCombinationItem(
"bgw", $width, $this->lng->txt(
"width"));
319 $height->setValue($ilSetting->get(
"custom_icon_big_height"));
320 $size_big->addCombinationItem(
"bgh", $height, $this->lng->txt(
"height"));
324 $form->addItem($size_small);
328 $width->setValue($ilSetting->get(
"custom_icon_small_width"));
329 $size_small->addCombinationItem(
"smw", $width, $this->lng->txt(
"width"));
333 $height->setValue($ilSetting->get(
"custom_icon_small_height"));
334 $size_small->addCombinationItem(
"smh", $height, $this->lng->txt(
"height"));
338 $form->addItem($size_tiny);
342 $width->setValue($ilSetting->get(
"custom_icon_tiny_width"));
343 $size_tiny->addCombinationItem(
"tnw", $width, $this->lng->txt(
"width"));
347 $height->setValue($ilSetting->get(
"custom_icon_tiny_height"));
348 $size_tiny->addCombinationItem(
"tnh", $height, $this->lng->txt(
"height"));
351 $form->addCommandButton(
'saveCustomIcons', $this->lng->txt(
'save'));
361 if ($form->checkInput())
363 $ilSetting->set(
"custom_icons", (
int)$form->getInput(
"custom_icons"));
364 $ilSetting->set(
"custom_icon_big_width", (
int)$form->getInput(
"custom_icon_big_width"));
365 $ilSetting->set(
"custom_icon_big_height", (
int)$form->getInput(
"custom_icon_big_height"));
366 $ilSetting->set(
"custom_icon_small_width", (
int)$form->getInput(
"custom_icon_small_width"));
367 $ilSetting->set(
"custom_icon_small_height", (
int)$form->getInput(
"custom_icon_small_height"));
368 $ilSetting->set(
"custom_icon_tiny_width", (
int)$form->getInput(
"custom_icon_tiny_width"));
369 $ilSetting->set(
"custom_icon_tiny_height", (
int)$form->getInput(
"custom_icon_tiny_height"));
372 $this->ctrl->redirect($this,
"customIcons");
375 $form->setValuesByPost();
381 $this->tabs_gui->activateTab(
'modules');
383 $this->tabs_gui->addSubTab(
"list_mods",
384 $this->lng->txt(
"rep_new_item_menu"),
385 $this->ctrl->getLinkTarget($this,
"listModules"));
387 $this->tabs_gui->addSubTab(
"new_item_groups",
388 $this->lng->txt(
"rep_new_item_groups"),
389 $this->ctrl->getLinkTarget($this,
"listNewItemGroups"));
391 $this->tabs_gui->activateSubTab($a_active);
398 include_once(
"./Services/Repository/classes/class.ilModulesTableGUI.php");
401 $this->tpl->setContent($comp_table->getHTML());
408 if(!is_array(
$_POST[
"obj_grp"]) ||
409 !is_array(
$_POST[
"obj_pos"]))
411 $ilCtrl->redirect($this,
"listModules");
414 $grp_pos_map = array(0 => 9999);
415 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
418 $grp_pos_map[$item[
"id"]] = $item[
"pos"];
421 $type_pos_map = array();
422 foreach(
$_POST[
"obj_pos"] as $obj_type => $pos)
424 $grp_id = (int)
$_POST[
"obj_grp"][$obj_type];
425 $type_pos_map[$grp_id][$obj_type] = $pos;
428 $ilSetting->set(
"obj_dis_creation_".$obj_type, !(
int)
$_POST[
"obj_enbl_creation"][$obj_type]);
431 foreach($type_pos_map as $grp_id => $obj_types)
433 $grp_pos = str_pad($grp_pos_map[$grp_id], 4,
"0", STR_PAD_LEFT);
437 foreach(array_keys($obj_types) as $obj_type)
440 $type_pos = $grp_pos.str_pad($pos, 4,
"0", STR_PAD_LEFT);
441 $ilSetting->set(
"obj_add_new_pos_".$obj_type, $type_pos);
442 $ilSetting->set(
"obj_add_new_pos_grp_".$obj_type, $grp_id);
458 $ilCtrl->redirect($this,
"listModules");
467 $ilToolbar->addButton($this->lng->txt(
"rep_new_item_group_add"),
468 $this->ctrl->getLinkTarget($this,
"addNewItemGroup"));
470 $ilToolbar->addButton($this->lng->txt(
"rep_new_item_group_add_separator"),
471 $this->ctrl->getLinkTarget($this,
"addNewItemGroupSeparator"));
473 include_once(
"./Services/Repository/classes/class.ilNewItemGroupTableGUI.php");
476 $this->tpl->setContent($grp_table->getHTML());
483 include_once
"Services/Form/classes/class.ilPropertyFormGUI.php";
486 $this->lng->loadLanguageModule(
"meta");
487 $def_lng = $this->lng->getDefaultLanguage();
489 $title =
new ilTextInputGUI($this->lng->txt(
"title"),
"title_".$def_lng);
490 $title->
setInfo($this->lng->txt(
"meta_l_".$def_lng).
491 " (".$this->lng->txt(
"default_language").
")");
492 $title->setRequired(
true);
493 $form->addItem($title);
495 foreach($this->lng->getInstalledLanguages() as $lang_id)
497 if($lang_id != $def_lng)
499 $title =
new ilTextInputGUI($this->lng->txt(
"translation"),
"title_".$lang_id);
500 $title->
setInfo($this->lng->txt(
"meta_l_".$lang_id));
501 $form->addItem($title);
507 $form->setTitle($this->lng->txt(
"rep_new_item_group_add"));
508 $form->setFormAction($this->ctrl->getFormAction($this,
"saveNewItemGroup"));
510 $form->addCommandButton(
"saveNewItemGroup", $this->lng->txt(
"save"));
514 $form->setTitle($this->lng->txt(
"rep_new_item_group_edit"));
515 $form->setFormAction($this->ctrl->getFormAction($this,
"updateNewItemGroup"));
517 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
519 $grp = $grp[$a_grp_id];
521 foreach($grp[
"titles"] as $id => $value)
523 $field = $form->getItemByPostVar(
"title_".$id);
526 $field->setValue($value);
530 $form->addCommandButton(
"updateNewItemGroup", $this->lng->txt(
"save"));
532 $form->addCommandButton(
"listNewItemGroups", $this->lng->txt(
"cancel"));
544 $this->tpl->setContent($a_form->getHTML());
550 if($form->checkInput())
553 foreach($this->lng->getInstalledLanguages() as $lang_id)
555 $titles[$lang_id] = $form->getInput(
"title_".$lang_id);
558 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
562 $this->ctrl->redirect($this,
"listNewItemGroups");
566 $form->setValuesByPost();
572 $grp_id = (int)
$_GET[
"grp_id"];
575 $this->ctrl->redirect($this,
"listNewItemGroups");
580 $this->ctrl->setParameter($this,
"grp_id", $grp_id);
584 $this->tpl->setContent($a_form->getHTML());
589 $grp_id = (int)
$_GET[
"grp_id"];
592 $this->ctrl->redirect($this,
"listNewItemGroups");
595 $this->ctrl->setParameter($this,
"grp_id", $grp_id);
598 if($form->checkInput())
601 foreach($this->lng->getInstalledLanguages() as $lang_id)
603 $titles[$lang_id] = $form->getInput(
"title_".$lang_id);
606 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
610 $this->ctrl->redirect($this,
"listNewItemGroups");
614 $form->setValuesByPost();
620 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
625 $this->ctrl->redirect($this,
"listNewItemGroups");
632 if(is_array(
$_POST[
"grp_order"]))
634 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
637 $grp_pos_map = array();
638 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
641 $grp_pos_map[$item[
"id"]] = str_pad($item[
"pos"], 4,
"0", STR_PAD_LEFT);
650 foreach($subitems as $obj_type)
652 $old_pos = $ilSetting->get(
"obj_add_new_pos_".$obj_type);
653 if(strlen($old_pos) == 8)
655 $new_pos = $grp_pos_map[$grp_id].substr($old_pos, 4);
656 $ilSetting->set(
"obj_add_new_pos_".$obj_type, $new_pos);
664 $this->ctrl->redirect($this,
"listNewItemGroups");
669 if(!is_array(
$_POST[
"grp_id"]))
677 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
679 $cgui->setHeaderText($this->lng->txt(
"rep_new_item_group_delete_sure"));
681 $cgui->setFormAction($this->ctrl->getFormAction($this));
682 $cgui->setCancel($this->lng->txt(
"cancel"),
"listNewItemGroups");
683 $cgui->setConfirm($this->lng->txt(
"confirm"),
"deleteNewItemGroup");
685 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
688 foreach (
$_POST[
"grp_id"] as $grp_id)
690 $cgui->addItem(
"grp_id[]", $grp_id, $groups[$grp_id][
"title"]);
693 $this->tpl->setContent($cgui->getHTML());
698 if(!is_array(
$_POST[
"grp_id"]))
703 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
704 foreach(
$_POST[
"grp_id"] as $grp_id)
710 $this->ctrl->redirect($this,
"listNewItemGroups");
719 require_once
'Services/Tracking/classes/class.ilChangeEvent.php';
722 return array(array(
"view", $fields));
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
view(ilPropertyFormGUI $a_form=null)
This class represents an option in a radio group.
static _activate()
Activates change event tracking.
static addNewItemGroupSeparator()
TableGUI class for new item groups.
confirmDeleteNewItemGroup()
static getNewItemGroups()
customIcons(ilPropertyFormGUI $a_form=null)
setModuleSubTabs($a_active)
addNewItemGroupSeparator()
setInfo($a_info)
Set Info.
static getNewItemGroupSubItems()
static deleteNewItemGroup($a_id)
if(!is_array($argv)) $options
Class ilObjectGUI Basic methods of all Output classes.
This class represents a text property in a property form.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
addToExternalSettingsForm($a_form_id)
prepareOutput()
prepare output
static updateNewItemGroupOrder(array $a_order)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static addNewItemGroup(array $a_titles)
static _isActive()
Returns true, if change event tracking is active.
static _deactivate()
Deactivates change event tracking.
initNewItemGroupForm($a_grp_id=false)
static updateNewItemGroup($a_id, array $a_titles)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
TableGUI class for module listing.
addNewItemGroup(ilPropertyFormGUI $a_form=null)
editNewItemGroup(ilPropertyFormGUI $a_form=null)
setValue($a_value)
Set Value.
Confirmation screen class.