19 declare(strict_types=1);
42 bool $a_call_by_reference =
true,
43 bool $a_prepare_output =
true 47 $this->
lng = $DIC->language();
48 $this->rbac_system = $DIC->rbac()->system();
49 $this->
access = $DIC->access();
50 $this->
ctrl = $DIC->ctrl();
52 $lng = $DIC->language();
53 $this->ui_factory = $DIC->ui()->factory();
54 $this->ui_renderer = $DIC->ui()->renderer();
55 $this->request = $DIC->http()->request();
56 $this->
ui = $DIC->ui();
70 $cmd = $this->
ctrl->getCmd();
74 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
78 switch ($this->
ctrl->getNextClass($this)) {
79 case 'ilpermissiongui':
80 $this->tabs_gui->setTabActive(
'perm_settings');
82 $this->
ctrl->forwardCommand($perm_gui);
86 if (!$cmd || $cmd ===
'view') {
87 $cmd =
'editSettings';
97 if ($this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
98 $this->tabs_gui->addTarget(
100 $this->
ctrl->getLinkTarget($this,
'editSettings'),
101 array(
'editSettings',
'view')
105 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
106 $this->tabs_gui->addTarget(
108 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
'perm'),
117 if ($this->
settings->get(
'rep_favourites',
'0') !==
'1') {
118 $content[] = $this->ui_factory->messageBox()->info($this->
lng->txt(
'favourites_disabled_info'));
121 if ($this->
settings->get(
'mmbr_my_crs_grp',
'0') !==
'1') {
122 $content[] = $this->ui_factory->messageBox()->info($this->
lng->txt(
'memberships_disabled_info'));
126 $this->tpl->setContent($this->
ui->renderer()->renderAsync($content));
133 $fields[
'enable_favourites'] = $this->ui_factory->input()->field()->checkbox(
$lng->
txt(
'dash_enable_favourites'))
134 ->
withValue($this->viewSettings->enabledSelectedItems());
135 $info_text = ($this->viewSettings->enabledMemberships())
137 :
$lng->
txt(
'dash_member_main_alt') .
' ' . $this->
ui->renderer()->render(
138 $this->ui_factory->link()->standard(
140 $this->
ctrl->getLinkTargetByClass([
'ilAdministrationGUI',
'ilObjMainMenuGUI',
'ilmmsubitemgui'])
144 $fields[
'enable_memberships'] = $this->ui_factory->input()->field()->checkbox(
$lng->
txt(
'dash_enable_memberships'), $info_text)
145 ->
withValue($this->viewSettings->enabledMemberships());
147 $section1 = $this->ui_factory->input()->field()->section($this->
maybeDisable($fields),
$lng->
txt(
'dash_main_panel'));
150 foreach ($this->side_panel_settings->getValidModules() as $mod) {
151 $sp_fields[
'enable_' . $mod] = $this->ui_factory->input()->field()->checkbox(
$lng->
txt(
'dash_enable_' . $mod))
152 ->
withValue($this->side_panel_settings->isEnabled($mod));
155 $section2 = $this->ui_factory->input()->field()->section($this->
maybeDisable($sp_fields),
$lng->
txt(
'dash_side_panel'));
158 return $this->ui_factory->input()->container()->form()->standard(
160 [
'main_panel' => $section1,
'side_panel' => $section2]
168 $form = $form->withRequest($this->request);
169 $form_data = $form->getData();
170 $this->viewSettings->enableSelectedItems($form_data[
'main_panel'][
'enable_favourites']);
171 $this->viewSettings->enableMemberships($form_data[
'main_panel'][
'enable_memberships']);
173 foreach ($this->side_panel_settings->getValidModules() as $mod) {
174 $this->side_panel_settings->enable($mod, (
bool) $form_data[
'side_panel'][
'enable_' . $mod]);
177 $this->tpl->setOnScreenMessage(
178 $this->tpl::MESSAGE_TYPE_SUCCESS,
179 $this->
lng->txt(
'settings_saved'),
183 $this->tpl->setOnScreenMessage(
184 $this->tpl::MESSAGE_TYPE_FAILURE,
185 $this->
lng->txt(
'no_permission'),
190 $this->
ctrl->redirect($this,
'editSettings');
200 if ($this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
207 if ($this->viewSettings->enabledSelectedItems()) {
210 $lng->
txt(
'dash_view_favourites'),
215 if ($this->viewSettings->enabledMemberships()) {
217 'view_courses_groups',
218 $lng->
txt(
'dash_view_courses_groups'),
224 $tabs->activateSubTab($a_active);
229 if ($this->
settings->get(
'mmbr_my_crs_grp',
'0') !==
'1') {
230 $content[] = $this->ui_factory->messageBox()->info($this->
lng->txt(
'memberships_disabled_info'));
232 $this->tabs_gui->activateTab(
'settings');
236 $this->tpl->setContent($this->ui_renderer->render($content));
244 if ($view === $this->viewSettings->getSelectedItemsView()) {
245 $save_cmd =
'saveViewFavourites';
247 $save_cmd =
'saveViewCoursesGroups';
250 $ops = $this->viewSettings->getAvailablePresentationsByView($view);
251 $pres_options = array_column(array_map(
static fn ($v) => [$v,
$lng->
txt(
'dash_' . $v)], $ops), 1, 0);
252 $avail_pres = $this->ui_factory->input()->field()->multiSelect(
$lng->
txt(
'dash_avail_presentation'), $pres_options)
253 ->
withValue($this->viewSettings->getActivePresentationsByView($view));
254 $default_pres = $this->ui_factory->input()->field()->radio(
$lng->
txt(
'dash_default_presentation'))
255 ->withOption(
'list',
$lng->
txt(
'dash_list'))
256 ->withOption(
'tile',
$lng->
txt(
'dash_tile'));
257 $default_pres = $default_pres->withValue($this->viewSettings->getDefaultPresentationByView($view));
258 $sec_presentation = $this->ui_factory->input()->field()->section(
259 $this->
maybeDisable([
'avail_pres' => $avail_pres,
'default_pres' => $default_pres]),
263 $ops = $this->viewSettings->getAvailableSortOptionsByView($view);
264 $sortation_options = array_column(array_map(
static fn ($v) => [$v,
$lng->
txt(
'dash_sort_by_' . $v)], $ops), 1, 0);
265 $avail_sort = $this->ui_factory->input()->field()->multiSelect(
$lng->
txt(
'dash_avail_sortation'), $sortation_options)
266 ->
withValue($this->viewSettings->getActiveSortingsByView($view));
267 $default_sort = $this->ui_factory->input()->field()->radio(
$lng->
txt(
'dash_default_sortation'));
268 foreach ($sortation_options as $k => $text) {
269 $default_sort = $default_sort->withOption($k, $text);
271 $default_sort = $default_sort->withValue($this->viewSettings->getDefaultSortingByView($view));
272 $sec_sortation = $this->ui_factory->input()->field()->section(
273 $this->
maybeDisable([
'avail_sort' => $avail_sort,
'default_sort' => $default_sort]),
277 $form = $this->ui_factory->input()->container()->form()->standard(
278 $this->
ctrl->getFormAction($this, $save_cmd),
279 [
'presentation' => $sec_presentation,
'sortation' => $sec_sortation]
289 $this->viewSettings->getMembershipsView(),
290 'editViewCoursesGroups' 296 if ($this->
settings->get(
'rep_favourites',
'0') !==
'1') {
297 $content[] = $this->ui_factory->messageBox()->info($this->
lng->txt(
'favourites_disabled_info'));
299 $this->tabs_gui->activateTab(
'settings');
303 $this->tpl->setContent($this->ui_renderer->render($content));
309 $this->viewSettings->getSelectedItemsView(),
321 $this->tpl->setOnScreenMessage(
322 $this->tpl::MESSAGE_TYPE_FAILURE,
323 $this->
lng->txt(
'no_permission'),
330 $form = $form->withRequest(
$request);
331 $form_data = $form->getData();
332 $this->viewSettings->storeViewSorting(
334 $form_data[
'sortation'][
'default_sort'],
335 $form_data[
'sortation'][
'avail_sort'] ?: []
337 $this->viewSettings->storeViewPresentation(
339 $form_data[
'presentation'][
'default_pres'],
340 $form_data[
'presentation'][
'avail_pres'] ?: []
343 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
'msg_obj_modified'),
true);
357 return array_map(
static fn (
FormInput $field):
FormInput => $field->withDisabled(
true), $fields);
362 return $this->rbac_system->checkAccess(
'write', $this->
object->getRefId());
An entity that renders components to a string output.
getViewSettingsForm(int $view)
ilDashboardSidePanelSettingsRepository $side_panel_settings
ilPDSelectedItemsBlockViewSettings $viewSettings
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...
redirect(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
maybeDisable(array $fields)
setSettingsSubTabs(string $a_active)
prepareOutput(bool $show_sub_objects=true)
loadLanguageModule(string $a_module)
Load language module.
saveViewSettings(int $view, string $redirect_cmd)
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
Provides fluid interface to RBAC services.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ServerRequestInterface $request
Class ilObjectGUI Basic methods of all Output classes.
ilObjDashboardSettingsGUI: ilPermissionGUI ilObjDashboardSettingsGUI: ilAdministrationGUI ...
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.