19 declare(strict_types=1);
52 bool $a_call_by_reference =
true,
53 bool $a_prepare_output =
true 57 $this->
lng = $DIC->language();
58 $this->rbac_system = $DIC->rbac()->system();
59 $this->
access = $DIC->access();
60 $this->
ctrl = $DIC->ctrl();
62 $lng = $DIC->language();
63 $this->ui_factory = $DIC->ui()->factory();
64 $this->ui_renderer = $DIC->ui()->renderer();
65 $this->request = $DIC->http()->request();
66 $this->
ui = $DIC->ui();
67 $this->style_gui = $DIC->contentStyle()->gui();
81 $cmd = $this->
ctrl->getCmd();
85 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
89 switch ($this->
ctrl->getNextClass($this)) {
90 case strtolower(ilPermissionGUI::class):
91 $this->tabs_gui->activateTab(
'perm_settings');
93 $this->
ctrl->forwardCommand($perm_gui);
95 case strtolower(ilDashboardPageLanguageSelectGUI::class):
96 $this->tabs_gui->activateTab(
'dash_customization');
99 case strtolower(ilObjectContentStyleSettingsGUI::class):
100 $this->tabs_gui->clearTargets();
101 $this->
ctrl->setParameterByClass(ilDashboardPageGUI::class,
'dshs_lang', $this->request->getQueryParams()[
'dshs_lang']);
102 $this->tabs_gui->setBackTarget($this->
lng->txt(
'back'), $this->
ctrl->getLinkTargetByClass(
103 [ilDashboardPageLanguageSelectGUI::class, ilDashboardPageGUI::class],
106 $gui = $this->style_gui->objectSettingsGUIForRefId(
null, $this->
getRefId());
107 $this->
ctrl->setParameter($gui,
'dshs_lang', $this->request->getQueryParams()[
'dshs_lang']);
108 $this->
ctrl->forwardCommand($gui);
111 $this->tabs_gui->activateTab(
'settings');
112 if (!$cmd || $cmd ===
'view') {
113 $cmd =
'editSettings';
123 if ($this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
124 $this->tabs_gui->addTarget(
126 $this->
ctrl->getLinkTarget($this,
'editSettings'),
127 [
'editSettings',
'view']
129 $this->tabs_gui->addTarget(
130 'dash_customization',
131 $this->
ctrl->getLinkTargetByClass(ilDashboardPageLanguageSelectGUI::class)
135 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
136 $this->tabs_gui->addTarget(
138 $this->
ctrl->getLinkTargetByClass(ilPermissionGUI::class,
'perm'),
140 ilPermissionGUI::class
147 if ($this->
settings->get(
'rep_favourites',
'0') !==
'1') {
148 $content[] = $this->ui_factory->messageBox()->info($this->
lng->txt(
'favourites_disabled_info'));
151 if ($this->
settings->get(
'mmbr_my_crs_grp',
'0') !==
'1') {
152 $content[] = $this->ui_factory->messageBox()->info($this->
lng->txt(
'memberships_disabled_info'));
156 $this->tpl->setContent($table->getHTML());
161 $this->tabs_gui->activateTab(
'settings');
163 $form = $this->
getViewForm(self::VIEW_MODE_SORTING);
164 $this->tpl->setContent($this->
ui->renderer()->renderAsync($form));
170 case self::VIEW_MODE_PRESENTATION:
171 case self::VIEW_MODE_SORTING:
172 return $this->ui_factory->input()->container()->form()->standard(
173 $this->
ctrl->getFormAction($this,
'save' . $mode),
176 $this->viewSettings->getPresentationViews()
186 $this->tpl->addJavaScript(
"assets/js/SortationUserInputHandler.js");
189 $availabe_sort_options = $this->viewSettings->getAvailableSortOptionsByView($view);
190 $options = array_reduce(
191 $availabe_sort_options,
192 static function (array $options,
string $option) use (
$lng): array {
193 $options[$option] =
$lng->
txt(self::DASH_SORT_PREFIX . $option);
199 $available_sorting = $this->ui_factory
202 ->multiSelect($this->
lng->txt(
'dash_avail_sortation'), $options)
204 $this->viewSettings->getActiveSortingsByView($view)
207 static fn(
string $id) =>
"document.getElementById('$id').setAttribute('data-checkbox', 'activeSorting$view'); 208 document.addEventListener('DOMContentLoaded', function () { 209 il.Dashboard.handleUserInputForSortationsByView($view); 212 $default_sorting = $this->ui_factory
215 ->select($this->
lng->txt(
'dash_default_sortation'), $options)
216 ->
withValue($this->viewSettings->getDefaultSortingByView($view))
218 ->withAdditionalOnLoadCode(
219 static fn(
string $id) =>
"document.getElementById('$id').setAttribute('data-select', 'sorting$view');" 221 return $this->ui_factory->input()->field()->section(
222 $this->
maybeDisable([
'avail_sorting' => $available_sorting,
'default_sorting' => $default_sorting]),
230 case self::VIEW_MODE_SORTING:
233 $this->
lng->txt(
'dash_' . $this->viewSettings->getViewName($view))
235 case self::VIEW_MODE_PRESENTATION:
239 $this->
lng->txt(
'dash_' . $this->viewSettings->getViewName($view))
247 $form_data = $this->request->getParsedBody();
248 foreach ($this->viewSettings->getPresentationViews() as $presentation_view) {
249 if (isset($form_data[
'main_panel'][
'enable'][$presentation_view])) {
250 $this->viewSettings->enableView(
252 (
bool) $form_data[
'main_panel'][
'enable'][$presentation_view]
255 $this->viewSettings->enableView($presentation_view,
false);
259 $positions = $form_data[
'main_panel'][
'position'];
261 $this->viewSettings->setViewPositions(array_keys($positions));
263 foreach ($this->side_panel_settings->getValidModules() as $mod) {
264 $this->side_panel_settings->enable($mod, (
bool) ($form_data[
'side_panel'][
'enable'][$mod] ??
false));
267 $positions = $form_data[
'side_panel'][
'position'];
269 $this->side_panel_settings->setPositions(array_keys($positions));
271 $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_SUCCESS, $this->
lng->txt(
'settings_saved'),
true);
273 $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_FAILURE, $this->
lng->txt(
'no_permission'),
true);
284 if ($this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
293 $lng->
txt(
'dash_presentation'),
304 $tabs->activateSubTab($a_active);
309 $this->tabs_gui->activateTab(
'settings');
312 $form = $this->
getViewForm(self::VIEW_MODE_PRESENTATION);
314 $this->tpl->setContent($this->
ui->renderer()->renderAsync($form));
319 $this->
ui->mainTemplate()->setOnScreenMessage(
320 $this->
ui->mainTemplate()::MESSAGE_TYPE_INFO,
321 $this->
lng->txt(
'dash_page_edit_info'),
325 $this->tabs_gui->activateTab(
'dash_customization');
327 $content = $this->
ui->renderer()->render(
328 $this->
ui->factory()->button()->standard(
329 $this->
lng->txt(
'customize_page'),
330 $this->
ctrl->getLinkTargetByClass([self::class, ilDashboardPageLanguageSelectGUI::class],
'select')
340 $this->tpl->setContent($content);
346 $ops = $this->viewSettings->getAvailablePresentationsByView($view);
347 $pres_options = array_column(
349 static fn(
int $k,
string $v): array => [$v,
$lng->
txt(
'dash_' . $v)],
356 $avail_pres = $this->ui_factory->input()->field()->multiSelect(
357 $lng->
txt(
'dash_avail_presentation'),
360 ->
withValue($this->viewSettings->getActivePresentationsByView($view));
361 $default_pres = $this->ui_factory->input()->field()->radio(
$lng->
txt(
'dash_default_presentation'))
362 ->withOption(
'list',
$lng->
txt(
'dash_list'))
363 ->withOption(
'tile',
$lng->
txt(
'dash_tile'));
364 $default_pres = $default_pres->withValue($this->viewSettings->getDefaultPresentationByView($view));
365 return $this->ui_factory->input()->field()->section(
366 $this->
maybeDisable([
'avail_pres' => $avail_pres,
'default_pres' => $default_pres]),
374 $data = $this->
getViewForm(self::VIEW_MODE_PRESENTATION)->withRequest($this->request)->getData();
376 foreach (
$data as $view => $view_data) {
377 $this->viewSettings->storeViewPresentation(
379 $view_data[
'default_pres'],
380 $view_data[
'avail_pres'] ?? []
383 $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_SUCCESS, $this->
lng->txt(
'msg_obj_modified'),
true);
385 $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_FAILURE, $this->
lng->txt(
'no_permission'),
true);
393 $data = $this->
getViewForm(self::VIEW_MODE_SORTING)->withRequest($this->request)->getData();
395 foreach (
$data as $view => $view_data) {
396 if (isset($view_data[
'default_sorting'])) {
397 if (!is_array($view_data[
'avail_sorting'] ??
null)) {
398 $view_data[
'avail_sorting'] = [$view_data[
'default_sorting']];
400 $this->viewSettings->storeViewSorting(
402 $view_data[
'default_sorting'],
403 $view_data[
'avail_sorting']
407 $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_SUCCESS, $this->
lng->txt(
'msg_obj_modified'),
true);
409 $this->tpl->setOnScreenMessage($this->tpl::MESSAGE_TYPE_FAILURE, $this->
lng->txt(
'no_permission'),
true);
429 return $this->rbac_system->checkAccess(
'write', $this->
object->getRefId());
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...
getViewForm(string $mode)
maybeDisable(array $fields)
setSettingsSubTabs(string $a_active)
ilDashboardPageGUI: ilPageEditorGUI, ilEditClipboardGUI, ilMDEditorGUI ilDashboardPageGUI: ilAdminis...
prepareOutput(bool $show_sub_objects=true)
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
withAdditionalOnLoadCode(Closure $binder)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
loadLanguageModule(string $a_module)
Load language module.
Facade for consumer gui interface.
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
@ilCtrl_isCalledBy ilDashboardPageLanguageSelectGUI: ilObjDashboardSettingsGUI
getViewSectionPresentation(int $view, string $title)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const VIEW_RECOMMENDED_CONTENT
Provides fluid interface to RBAC services.
This is how the factory for UI elements looks.
Class ilObjectGUI Basic methods of all Output classes.
ilObjDashboardSettingsGUI: ilPermissionGUI ilObjDashboardSettingsGUI: ilDashboardPageLanguageSelectG...
getViewByMode(string $mode, int $view)
const VIEW_MODE_PRESENTATION
__construct(Container $dic, ilPlugin $plugin)
getViewSectionSorting(int $view, string $title)
static isLanguageAvailable(string $lang)