62 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
66 $this->lng = $DIC->language();
67 $this->rbacsystem = $DIC->rbac()->system();
68 $this->error = $DIC[
"ilErr"];
69 $this->access = $DIC->access();
70 $this->ctrl = $DIC->ctrl();
72 $lng = $DIC->language();
73 $this->ui_factory = $DIC->ui()->factory();
74 $this->ui_renderer = $DIC->ui()->renderer();
75 $this->request = $DIC->http()->request();
76 $this->
ui = $DIC->ui();
81 $lng->loadLanguageModule(
"dash");
96 $next_class = $this->ctrl->getNextClass($this);
97 $cmd = $this->ctrl->getCmd();
101 if (!$this->rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
102 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
105 switch ($next_class) {
106 case 'ilpermissiongui':
107 $this->tabs_gui->setTabActive(
'perm_settings');
108 include_once(
"Services/AccessControl/classes/class.ilPermissionGUI.php");
110 $ret = $this->ctrl->forwardCommand($perm_gui);
114 if (!$cmd || $cmd ==
'view') {
115 $cmd =
"editSettings";
135 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
136 $this->tabs_gui->addTarget(
138 $this->ctrl->getLinkTarget($this,
"editSettings"),
139 array(
"editSettings",
"view")
143 if (
$rbacsystem->checkAccess(
'edit_permission', $this->object->getRefId())) {
144 $this->tabs_gui->addTarget(
146 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm"),
161 $this->tpl->setContent(
$ui->renderer()->renderAsync($form));
177 $fields[
"enable_favourites"] =
$f->input()->field()->checkbox(
$lng->txt(
"dash_enable_favourites"))
178 ->withValue($this->viewSettings->enabledSelectedItems());
179 $info_text = ($this->viewSettings->enabledMemberships())
181 :
$lng->txt(
"dash_member_main_alt") .
" " .
$ui->renderer()->render(
182 $ui->factory()->link()->standard(
183 $lng->txt(
"dash_click_here"),
184 $ctrl->getLinkTargetByClass([
"ilAdministrationGUI",
"ilObjMainMenuGUI",
"ilmmsubitemgui"])
188 $fields[
"enable_memberships"] =
$f->input()->field()->checkbox(
$lng->txt(
"dash_enable_memberships"), $info_text)
189 ->withValue($this->viewSettings->enabledMemberships());
192 $section1 =
$f->input()->field()->section($this->
maybeDisable($fields),
$lng->txt(
"dash_main_panel"));
195 foreach ($side_panel->getValidModules() as $mod) {
196 $sp_fields[
"enable_" . $mod] =
$f->input()->field()->checkbox(
$lng->txt(
"dash_enable_" . $mod))
197 ->withValue($side_panel->isEnabled($mod));
201 $section2 =
$f->input()->field()->section($this->
maybeDisable($sp_fields),
$lng->txt(
"dash_side_panel"));
203 $form_action =
$ctrl->getLinkTarget($this,
"saveSettings");
204 return $f->input()->container()->form()->standard(
206 [
"main_panel" => $section1,
"side_panel" => $section2]
221 $ilCtrl->redirect($this,
"editSettings");
227 $form = $form->withRequest(
$request);
228 $form_data = $form->getData();
229 $this->viewSettings->enableSelectedItems((
int) ($form_data[
'main_panel'][
'enable_favourites'] !=
""));
230 $this->viewSettings->enableMemberships((
int) ($form_data[
'main_panel'][
'enable_memberships'] !=
""));
232 foreach ($side_panel->getValidModules() as $mod) {
233 $side_panel->enable($mod, (
bool) $form_data[
'side_panel'][
'enable_' . $mod]);
237 ilUtil::sendSuccess($this->lng->txt(
"settings_saved"),
true);
238 $ilCtrl->redirect($this,
"editSettings");
257 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
260 $lng->txt(
"general_settings"),
261 $ctrl->getLinkTarget($this,
"editSettings")
264 if ($this->viewSettings->enabledSelectedItems()) {
267 $lng->txt(
"dash_view_favourites"),
268 $ctrl->getLinkTarget($this,
"editViewFavourites")
272 if ($this->viewSettings->enabledMemberships()) {
274 "view_courses_groups",
275 $lng->txt(
"dash_view_courses_groups"),
276 $ctrl->getLinkTarget($this,
"editViewCoursesGroups")
281 $tabs->activateSubtab($a_active);
293 $tabs->activateTab(
"settings");
312 if ($view == $this->viewSettings->getSelectedItemsView()) {
313 $save_cmd =
"saveViewFavourites";
315 $save_cmd =
"saveViewCoursesGroups";
319 $ops = $this->viewSettings->getAvailablePresentationsByView($view);
320 $pres_options = array_column(array_map(
function ($k, $v) use (
$lng) {
321 return [$v,
$lng->txt(
"dash_" . $v)];
322 }, array_keys($ops), $ops), 1, 0);
323 $avail_pres =
$ui_factory->input()->field()->multiselect(
$lng->txt(
"dash_avail_presentation"), $pres_options)
324 ->withValue($this->viewSettings->getActivePresentationsByView($view));
325 $default_pres =
$ui_factory->input()->field()->radio(
$lng->txt(
"dash_default_presentation"))
326 ->withOption(
'list',
$lng->txt(
"dash_list"))
327 ->withOption(
'tile',
$lng->txt(
"dash_tile"));
328 $default_pres = $default_pres->withValue((
string) $this->viewSettings->getDefaultPresentationByView($view));
329 $sec_presentation =
$ui_factory->input()->field()->section(
330 $this->
maybeDisable([
"avail_pres" => $avail_pres,
"default_pres" => $default_pres]),
331 $lng->txt(
"dash_presentation")
335 $ops = $this->viewSettings->getAvailableSortOptionsByView($view);
336 $sortation_options = array_column(array_map(
function ($k, $v) use (
$lng) {
337 return [$v,
$lng->txt(
"dash_sort_by_" . $v)];
338 }, array_keys($ops), $ops), 1, 0);
339 $avail_sort =
$ui_factory->input()->field()->multiselect(
$lng->txt(
"dash_avail_sortation"), $sortation_options)
340 ->withValue($this->viewSettings->getActiveSortingsByView($view));
341 $default_sort =
$ui_factory->input()->field()->radio(
$lng->txt(
"dash_default_sortation"));
342 foreach ($sortation_options as $k => $text) {
343 $default_sort = $default_sort->withOption($k, $text);
345 $default_sort = $default_sort->withValue((
string) $this->viewSettings->getDefaultSortingByView($view));
346 $sec_sortation =
$ui_factory->input()->field()->section(
347 $this->
maybeDisable([
"avail_sort" => $avail_sort,
"default_sort" => $default_sort]),
348 $lng->txt(
"dash_sortation")
351 $form =
$ui_factory->input()->container()->form()->standard(
352 $ctrl->getFormAction($this, $save_cmd),
353 [
"presentation" => $sec_presentation,
"sortation" => $sec_sortation]
366 $this->viewSettings->getMembershipsView(),
367 "editViewCoursesGroups" 380 $tabs->activateTab(
"settings");
383 $view = $this->viewSettings->getSelectedItemsView();
396 $this->viewSettings->getSelectedItemsView(),
412 $ctrl->redirect($this, $redirect_cmd);
416 $form = $form->withRequest(
$request);
417 $form_data = $form->getData();
418 $this->viewSettings->storeViewSorting(
420 $form_data[
'sortation'][
'default_sort'],
421 $form_data[
'sortation'][
'avail_sort'] ?: []
423 $this->viewSettings->storeViewPresentation(
425 $form_data[
'presentation'][
'default_pres'],
426 $form_data[
'presentation'][
'avail_pres'] ?: []
429 ilUtil::sendSuccess(
$lng->txt(
"msg_obj_modified"),
true);
430 $ctrl->redirect($this, $redirect_cmd);
443 return array_map(
static function (
Input $field) :
Input {
450 return $this->rbacsystem->checkAccess(
'write', $this->object->getRefId());
getViewSettingsForm(int $view)
Get view courses and groups settings form.
saveViewCoursesGroups()
Save settings of courses and groups overview.
maybeDisable(array $fields)
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor.
saveSettings()
Save personal desktop settings.
setSettingsSubTabs($a_active)
Get tabs.
saveViewSettings(int $view, string $redirect_cmd)
Save settings of favourites overview.
prepareOutput($a_show_subobjects=true)
prepare output
editViewFavourites()
Edit favourites view.
Dashboard side panel settings Repo.
editViewCoursesGroups()
Edit settings of courses and groups overview.
Class ilObjectGUI Basic methods of all Output classes.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
saveViewFavourites()
Save settings of favourites overview.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
executeCommand()
Execute command.
editSettings()
Edit personal desktop settings.
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.