19 declare(strict_types=1);
49 bool $a_call_by_reference =
true,
50 bool $a_prepare_output =
true 54 $this->error = $DIC[
"ilErr"];
55 $this->
access = $DIC->access();
56 $this->rbacsystem = $DIC->rbac()->system();
58 $this->folder_settings =
new ilSetting(
'fold');
59 $this->
http = $DIC->http();
60 $this->
ctrl = $DIC->ctrl();
61 $this->
lng = $DIC->language();
62 $this->
toolbar = $DIC->toolbar();
63 $this->
factory = $DIC->ui()->factory();
64 $this->
renderer = $DIC->ui()->renderer();
69 $this->
lng->loadLanguageModule(
'rep');
70 $this->
lng->loadLanguageModule(
'cmps');
72 $this->admin_gui_request = $DIC
85 $next_class = $this->
ctrl->getNextClass($this);
86 $cmd = $this->
ctrl->getCmd();
90 if (!$ilAccess->checkAccess(
'read',
'', $this->object->getRefId())) {
94 switch ($next_class) {
95 case 'ilpermissiongui':
96 $this->tabs_gui->setTabActive(
'perm_settings');
98 $this->
ctrl->forwardCommand($perm_gui);
111 $this->tabs_gui->addTab(
113 $this->
lng->txt(
"settings"),
114 $this->
ctrl->getLinkTarget($this,
"view")
117 $this->tabs_gui->addTab(
119 $this->
lng->txt(
"rep_custom_icons"),
120 $this->
ctrl->getLinkTarget($this,
"customIcons")
123 $this->tabs_gui->addTab(
125 $this->
lng->txt(
"cmps_repository_object_types"),
126 $this->
ctrl->getLinkTarget($this,
"listModules")
129 if ($rbacsystem->
checkAccess(
'edit_permission', $this->object->getRefId())) {
130 $this->tabs_gui->addTab(
132 $this->
lng->txt(
"perm_settings"),
133 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
140 $this->tabs_gui->activateTab(
"settings");
146 $this->tpl->setContent($this->
renderer->render($a_form));
161 $this->
lng->txt(
"adm_rep_tree_only_cntr")
162 )->withByline($this->
lng->txt(
"adm_rep_tree_only_cntr_info"));
166 $this->
lng->txt(
"adm_rep_tree_limit_grp_crs"),
167 $this->
lng->txt(
"adm_rep_tree_limit_grp_crs_info")
172 'rep_tree_limit_grp_crs' => $cb
174 $this->
lng->txt(
"adm_rep_tree_all_types")
175 )->withByline($this->
lng->txt(
"adm_rep_tree_all_types_info"));
177 $tree_pres =
$f->switchableGroup(
182 $this->
lng->txt(
"adm_rep_tree_presentation")
186 $tree_limit_number =
$f->numeric(
187 $this->
lng->txt(
"rep_tree_limit_number"),
188 $this->
lng->txt(
"rep_tree_limit_number_info")
194 $tree_limit =
$f->optionalGroup(
196 'rep_tree_limit_number' => $tree_limit_number
198 $this->
lng->txt(
"rep_tree_limit"),
199 $this->
lng->txt(
"rep_tree_limit_info")
201 if (
$ilSetting->get(
"rep_tree_limit_number") <= 0) {
202 $tree_limit = $tree_limit->withValue(
null);
206 $change_mode =
$f->radio(
207 $this->
lng->txt(
"rep_breadcr_crs_config")
210 $this->
lng->txt(
"rep_breadcr_crs_overwrite")
212 'rep_breadcr_crs_default',
213 $this->
lng->txt(
"rep_breadcr_crs_overwrite_with_default")
216 $this->
lng->txt(
"rep_breadcr_crs_overwrite_not")
218 if (
$ilSetting->get(
"rep_breadcr_crs_default")) {
219 $change_mode = $change_mode->withValue(
'rep_breadcr_crs_default');
222 $breadcrumbs =
$f->optionalGroup(
224 'rep_breadcr_crs_overwrite' => $change_mode
226 $this->
lng->txt(
"rep_breadcr_crs")
229 $breadcrumbs = $breadcrumbs->withValue(
null);
233 $enable_trash =
$f->checkbox(
234 $this->
lng->txt(
"enable_trash"),
235 $this->
lng->txt(
"enable_trash_info")
239 $this->
lng->loadLanguageModule(
"trac");
240 $event =
$f->checkbox(
241 $this->
lng->txt(
'trac_show_repository_views'),
242 $this->
lng->txt(
"trac_show_repository_views_info")
246 $exp_disabled =
$f->group(
248 $this->
lng->txt(
"rep_export_limitation_disabled")
252 $exp_unlimited =
$f->group(
254 $this->
lng->txt(
"rep_export_limitation_unlimited")
258 $exp_limit_num =
$f->numeric(
259 $this->
lng->txt(
"rep_export_limit_number")
263 ->withRequired(
true);
265 $exp_limited =
$f->group(
267 'rep_export_limit_number' => $exp_limit_num
269 $this->
lng->txt(
"rep_export_limitation_limited")
273 $exp_limit =
$f->switchableGroup(
277 'rep_export_unlimited' => $exp_unlimited
279 $this->
lng->txt(
"rep_export_limitation"),
280 $this->
lng->txt(
"rep_export_limitation_info")
281 )->
withValue((
string) $limiter->getLimitationMode());
285 $ilSetting->get(
"rep_export_limit_number") ===
'' 287 $exp_limit = $exp_limit->withValue(
'rep_export_unlimited');
291 $dl_prob =
$f->checkbox(
292 $this->
lng->txt(
"enable_download_folder"),
293 $this->
lng->txt(
'enable_download_folder_info')
295 (
int) $this->folder_settings->get(
296 "enable_download_folder",
302 $dl_prop =
$f->checkbox(
303 $this->
lng->txt(
"enable_multi_download"),
304 $this->
lng->txt(
'enable_multi_download_info')
306 (
int) $this->folder_settings->get(
307 "enable_multi_download",
314 $this->
lng->txt(
"rep_favourites"),
315 $this->
lng->txt(
"rep_favourites_info")
321 'tree_pres' => $tree_pres,
322 'rep_tree_limit' => $tree_limit,
323 'rep_breadcr_crs' => $breadcrumbs,
324 'enable_trash' => $enable_trash,
325 'change_event_tracking' => $event,
326 'rep_export_limitation' => $exp_limit,
327 'enable_download_folder' => $dl_prob,
328 'enable_multi_download' => $dl_prop,
329 'rep_favourites' => $fav
331 $this->
lng->txt(
"settings")
332 )->withDisabled($read_only);
336 $sdesclen =
$f->numeric(
337 $this->
lng->txt(
"adm_rep_shorten_description_length")
342 $sdesc =
$f->optionalGroup(
344 'rep_shorten_description_length' => $sdesclen
346 $this->
lng->txt(
"adm_rep_shorten_description"),
347 $this->
lng->txt(
"adm_rep_shorten_description_info")
349 if (!
$ilSetting->get(
"rep_shorten_description")) {
350 $sdesc = $sdesc->withValue(
null);
354 $pltags =
$f->checkbox(
355 $this->
lng->txt(
'adm_show_comments_tagging_in_lists_tags')
358 $pl =
$f->optionalGroup(
360 'comments_tagging_in_lists_tags' => $pltags
362 $this->
lng->txt(
'adm_show_comments_tagging_in_lists')
364 if (!
$ilSetting->get(
'comments_tagging_in_lists')) {
365 $pl = $pl->withValue(
null);
368 $obj_lists =
$f->section(
370 'rep_shorten_description' => $sdesc,
371 'comments_tagging_in_lists' => $pl
373 $this->
lng->txt(
"rep_object_lists")
374 )->withDisabled($read_only);
376 $form = $this->
factory->input()->container()->form()->standard(
377 $this->
ctrl->getFormAction($this,
'saveSettings'),
380 'obj_lists' => $obj_lists
392 if (!$ilAccess->checkAccess(
'write',
'', $this->object->getRefId())) {
393 $this->tpl->setOnScreenMessage(
395 $this->
lng->txt(
'permission_denied'),
398 $this->
ctrl->redirect($this,
"view");
402 ->withRequest($this->
http->request());
403 if ($form->getData()) {
404 $data = $form->getData()[
'settings'];
406 "repository_tree_pres",
407 $data[
"tree_pres"][0]
409 if (
$data[
'tree_pres'][0] ===
'all_types') {
411 "rep_tree_limit_grp_crs",
412 (
string)
$data[
'tree_pres'][1][
"rep_tree_limit_grp_crs"] ??
'' 418 $data[
"rep_favourites"] ?
"1" :
"0" 421 if (
$data[
"rep_export_limitation"][0] ===
'rep_export_unlimited') {
423 "rep_export_limitation",
427 "rep_export_limit_number",
432 "rep_export_limitation",
433 (
string)
$data[
"rep_export_limitation"][0]
438 "rep_export_limit_number",
439 (
string) (
$data[
"rep_export_limitation"][1][
"rep_export_limit_number"] ??
'')
445 (
string)
$data[
"enable_trash"]
450 (
string) ((
int) $data[
"rep_breadcr_crs"])
452 if (isset($data[
"rep_breadcr_crs"])) {
453 $overwrite = $data[
"rep_breadcr_crs"][
"rep_breadcr_crs_overwrite"];
455 "rep_breadcr_crs_default",
456 (
string) ((
int) ($overwrite ===
'rep_breadcr_crs_default'))
458 if ($overwrite ===
'rep_breadcr_crs_default') {
462 "rep_breadcr_crs_overwrite",
463 (
string) ((
int) $overwrite)
468 $limit_number = ($data[
'rep_tree_limit'] &&
469 $data[
'rep_tree_limit'][
'rep_tree_limit_number'] > 0)
470 ? (
int) $data[
'rep_tree_limit'][
'rep_tree_limit_number']
472 $ilSetting->set(
'rep_tree_limit_number', (
string) $limit_number);
474 $this->folder_settings->set(
475 "enable_download_folder",
476 (
string) ((
int) $data[
"enable_download_folder"] === 1)
478 $this->folder_settings->set(
479 "enable_multi_download",
480 (
string) ((
int) $data[
"enable_multi_download"] === 1)
482 if ($data[
'change_event_tracking']) {
489 $data = $form->getData()[
'obj_lists'];
491 "rep_shorten_description",
492 (
string) ((
int) $data[
'rep_shorten_description'])
494 if (isset($data[
'rep_shorten_description'])) {
496 "rep_shorten_description_length",
497 (
string) ((
int) $data[
'rep_shorten_description'][
'rep_shorten_description_length'])
501 'comments_tagging_in_lists',
502 (
string) ((
int) $data[
'comments_tagging_in_lists'])
504 if (isset($data[
'comments_tagging_in_lists'])) {
506 'comments_tagging_in_lists_tags',
507 (
string) $data[
'comments_tagging_in_lists'][
'comments_tagging_in_lists_tags']
511 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
512 $this->
ctrl->redirect($this,
"view");
520 $this->tabs_gui->activateTab(
"icons");
526 $this->tpl->setContent($this->
renderer->render($a_form));
534 $cb = $this->
factory->input()->field()->checkbox(
535 $this->
lng->txt(
"enable_custom_icons"),
536 $this->
lng->txt(
"enable_custom_icons_info")
539 $section = $this->
factory->input()->field()->section(
540 [
'custom_icons' => $cb],
541 $this->
lng->txt(
"rep_custom_icons")
543 !$ilAccess->checkAccess(
'write',
'', $this->object->getRefId())
546 $form = $this->
factory->input()->container()->form()->standard(
547 $this->
ctrl->getFormAction($this,
'saveCustomIcons'),
548 [
'section' => $section]
559 if (!$ilAccess->checkAccess(
'write',
'', $this->object->getRefId())) {
560 $this->tpl->setOnScreenMessage(
562 $this->
lng->txt(
'permission_denied'),
565 $this->
ctrl->redirect($this,
"customIcons");
569 ->withRequest($this->
http->request());
570 if ($form->getData()) {
573 (
string) ((
int) $form->getData()[
'section'][
'custom_icons'])
575 $this->tpl->setOnScreenMessage(
577 $this->
lng->txt(
"msg_obj_modified"),
580 $this->
ctrl->redirect($this,
"customIcons");
588 $this->tabs_gui->activateTab(
'modules');
590 $this->tabs_gui->addSubTab(
592 $this->
lng->txt(
"rep_new_item_menu"),
593 $this->
ctrl->getLinkTarget($this,
"listModules")
596 $this->tabs_gui->addSubTab(
598 $this->
lng->txt(
"rep_new_item_groups"),
599 $this->
ctrl->getLinkTarget($this,
"listNewItemGroups")
602 $this->tabs_gui->activateSubTab($a_active);
611 $has_write = $ilAccess->checkAccess(
'write',
'', $this->
object->getRefId());
615 $this->tpl->setContent($comp_table->getHTML());
625 $item_groups = $this->admin_gui_request->getNewItemGroups();
626 $item_positions = $this->admin_gui_request->getNewItemPositions();
628 if (count($item_groups) === 0 || count($item_positions) === 0 ||
629 !$ilAccess->checkAccess(
'write',
'', $this->object->getRefId())) {
630 $ilCtrl->redirect($this,
"listModules");
633 $grp_pos_map = [0 => 9999];
635 $grp_pos_map[$item[
"id"]] = $item[
"pos"];
639 $item_enablings = $this->admin_gui_request->getNewItemEnablings();
640 foreach ($item_positions as $obj_type => $pos) {
641 $grp_id = ($item_groups[$obj_type] ?? 0);
642 $type_pos_map[$grp_id][$obj_type] = $pos;
646 "obj_dis_creation_" . $obj_type,
647 (
string) ((
int) (!($item_enablings[$obj_type] ??
false)))
651 foreach ($type_pos_map as $grp_id => $obj_types) {
652 $grp_pos = str_pad((
string) $grp_pos_map[$grp_id], 4,
"0", STR_PAD_LEFT);
656 foreach (array_keys($obj_types) as $obj_type) {
658 $type_pos = $grp_pos . str_pad((
string) $pos, 4,
"0", STR_PAD_LEFT);
659 $ilSetting->set(
"obj_add_new_pos_" . $obj_type, (
string) $type_pos);
660 $ilSetting->set(
"obj_add_new_pos_grp_" . $obj_type, (
string) $grp_id);
664 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
665 $ilCtrl->redirect($this,
"listModules");
675 $has_write = $ilAccess->checkAccess(
'write',
'', $this->
object->getRefId());
678 $ilToolbar->addButton(
679 $this->
lng->txt(
"rep_new_item_group_add"),
680 $this->
ctrl->getLinkTarget($this,
"addNewItemGroup")
686 $this->tpl->setContent($grp_table->getHTML());
695 $this->
lng->loadLanguageModule(
"meta");
696 $def_lng = $this->
lng->getDefaultLanguage();
699 $title->setInfo($this->
lng->txt(
"meta_l_" . $def_lng) .
700 " (" . $this->
lng->txt(
"default_language") .
")");
701 $title->setRequired(
true);
702 $form->addItem($title);
704 foreach ($this->
lng->getInstalledLanguages() as $lang_id) {
705 if ($lang_id !== $def_lng) {
706 $title =
new ilTextInputGUI($this->
lng->txt(
"translation"),
"title_" . $lang_id);
707 $title->setInfo($this->
lng->txt(
"meta_l_" . $lang_id));
708 $form->addItem($title);
713 $form->setTitle($this->
lng->txt(
"rep_new_item_group_add"));
714 $form->setFormAction($this->
ctrl->getFormAction($this,
"saveNewItemGroup"));
716 $form->addCommandButton(
"saveNewItemGroup", $this->
lng->txt(
"save"));
718 $form->setTitle($this->
lng->txt(
"rep_new_item_group_edit"));
719 $form->setFormAction($this->
ctrl->getFormAction($this,
"updateNewItemGroup"));
722 $grp = $grp[$a_grp_id];
724 foreach ($grp[
"titles"] as
$id => $value) {
725 $field = $form->getItemByPostVar(
"title_" .
$id);
727 $field->setValue($value);
731 $form->addCommandButton(
"updateNewItemGroup", $this->
lng->txt(
"save"));
733 $form->addCommandButton(
"listNewItemGroups", $this->
lng->txt(
"cancel"));
744 $this->tpl->setContent($a_form->getHTML());
750 if ($form->checkInput()) {
752 foreach ($this->
lng->getInstalledLanguages() as $lang_id) {
753 $titles[$lang_id] = $form->getInput(
"title_" . $lang_id);
757 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
758 $this->
ctrl->redirect($this,
"listNewItemGroups");
762 $form->setValuesByPost();
768 $grp_id = $this->admin_gui_request->getNewItemGroupId();
770 $this->
ctrl->redirect($this,
"listNewItemGroups");
774 $this->
ctrl->setParameter($this,
"grp_id", $grp_id);
778 $this->tpl->setContent($a_form->getHTML());
783 $grp_id = $this->admin_gui_request->getNewItemGroupId();
785 $this->
ctrl->redirect($this,
"listNewItemGroups");
788 $this->
ctrl->setParameter($this,
"grp_id", $grp_id);
791 if ($form->checkInput()) {
793 foreach ($this->
lng->getInstalledLanguages() as $lang_id) {
794 $titles[$lang_id] = $form->getInput(
"title_" . $lang_id);
798 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
799 $this->
ctrl->redirect($this,
"listNewItemGroups");
803 $form->setValuesByPost();
811 $group_order = $this->admin_gui_request->getNewItemGroupOrder();
812 if (count($group_order) > 0) {
817 $grp_pos_map[$item[
"id"]] = str_pad((
string) $item[
"pos"], 4,
"0", STR_PAD_LEFT);
824 foreach ($subitems as $obj_type) {
825 $old_pos =
$ilSetting->get(
"obj_add_new_pos_" . $obj_type);
826 if (strlen($old_pos) === 8) {
827 $new_pos = $grp_pos_map[$grp_id] . substr($old_pos, 4);
828 $ilSetting->set(
"obj_add_new_pos_" . $obj_type, $new_pos);
834 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
836 $this->
ctrl->redirect($this,
"listNewItemGroups");
841 $group_ids = $this->admin_gui_request->getNewItemGroupIds();
842 if (count($group_ids) === 0) {
843 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"));
851 $cgui->setHeaderText($this->
lng->txt(
"rep_new_item_group_delete_sure"));
853 $cgui->setFormAction($this->
ctrl->getFormAction($this));
854 $cgui->setCancel($this->
lng->txt(
"cancel"),
"listNewItemGroups");
855 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"deleteNewItemGroup");
859 foreach ($group_ids as $grp_id) {
860 $cgui->addItem(
"grp_ids[]", (
string) $grp_id, $groups[$grp_id][
"title"]);
863 $this->tpl->setContent($cgui->getHTML());
868 $group_ids = $this->admin_gui_request->getNewItemGroupIds();
869 if (count($group_ids) === 0) {
874 foreach ($group_ids as $grp_id) {
878 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
879 $this->
ctrl->redirect($this,
"listNewItemGroups");
886 switch ($a_form_id) {
891 return [[
"view", $fields]];
897 'adm_show_comments_tagging_in_lists' => [
903 return [[
"view", $fields]];
912 $bound = (
int) (10 ** $max_length - 1);
914 return $this->
refinery->int()->isLessThanOrEqual($bound);
919 return $this->
refinery->int()->isGreaterThan(0);
924 return $this->
refinery->int()->isGreaterThanOrEqual(0);
static _activate()
Activates change event tracking.
TableGUI class for new item groups.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
addToExternalSettingsForm(int $a_form_id)
confirmDeleteNewItemGroup()
prepareOutput(bool $show_sub_objects=true)
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
static getNewItemGroups()
AdministrationGUIRequest $admin_gui_request
A constraint encodes some resrtictions on values.
setModuleSubTabs(string $a_active)
static getNewItemGroupSubItems()
initNewItemGroupForm(int $a_grp_id=0)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
static http()
Fetches the global http state from ILIAS.
getMaxLengthConstraint(int $max_length)
static deleteNewItemGroup(int $a_id)
Class ilObjectGUI Basic methods of all Output classes.
editNewItemGroup(?ilPropertyFormGUI $a_form=null)
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
addNewItemGroup(?ilPropertyFormGUI $a_form=null)
static updateNewItemGroup(int $a_id, array $a_titles)
ilSetting $folder_settings
static updateNewItemGroupOrder(array $a_order)
static addNewItemGroup(array $a_titles)
const SET_EXPORT_DISABLED
static _isActive()
Returns true, if change event tracking is active.
Export limitation checker.
__construct(Container $dic, ilPlugin $plugin)
static _deactivate()
Deactivates change event tracking.
view(?StandardForm $a_form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
customIcons(?StandardForm $a_form=null)
getNonNegativeConstraint()