19 declare(strict_types=1);
43 private int $type = self::TYPE_VIEW;
52 public function __construct(
object $a_parent_gui,
string $a_parent_cmd)
56 $this->rbacreview = $DIC->rbac()->review();
57 $this->tree = $DIC->repositoryTree();
58 $this->system = $DIC->rbac()->system();
60 $this->
setId(
'rolf_role_tbl');
62 $this->
lng->loadLanguageModule(
'rbac');
63 $this->
lng->loadLanguageModule(
'search');
66 protected function fillRow(array $a_set): void
68 if ($a_set[
'type'] ==
'role') {
70 $this->
ctrl->setParameterByClass(
77 $this->
ctrl->setParameterByClass(
"ilobjrolegui",
"obj_id", $a_set[
"obj_id"]);
78 $link = $this->
ctrl->getLinkTargetByClass(
"ilobjrolegui",
"perm");
79 $this->
ctrl->setParameterByClass(
"ilobjrolegui",
"rolf_ref_id",
"");
81 $this->
ctrl->setParameterByClass(
"ilobjroletemplategui",
"obj_id", $a_set[
"obj_id"]);
82 $link = $this->
ctrl->getLinkTargetByClass(
"ilobjroletemplategui",
"perm");
85 switch ($a_set[
'rtype']) {
86 case self::TYPE_GLOBAL_AU:
87 $this->tpl->setVariable(
'ROLE_TYPE', $this->
lng->txt(
'rbac_auto_global'));
89 case self::TYPE_GLOBAL_UD:
90 $this->tpl->setVariable(
'ROLE_TYPE', $this->
lng->txt(
'rbac_ud_global'));
92 case self::TYPE_LOCAL_AU:
93 $this->tpl->setVariable(
'ROLE_TYPE', $this->
lng->txt(
'rbac_auto_local'));
95 case self::TYPE_LOCAL_UD:
96 $this->tpl->setVariable(
'ROLE_TYPE', $this->
lng->txt(
'rbac_ud_local'));
98 case self::TYPE_ROLT_AU:
99 $this->tpl->setVariable(
'ROLE_TYPE', $this->
lng->txt(
'rbac_auto_rolt'));
101 case self::TYPE_ROLT_UD:
102 $this->tpl->setVariable(
'ROLE_TYPE', $this->
lng->txt(
'rbac_ud_rolt'));
108 $this->tpl->setVariable(
'VAL_ID', $a_set[
'obj_id']);
111 if ($this->system->checkAccess(
'write', $this->parent_obj->getRefId())) {
112 $this->tpl->setVariable(
'VAL_TITLE_LINKED', $a_set[
'title']);
113 $this->tpl->setVariable(
'VAL_LINK', $link);
115 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'title']);
117 if (strlen($a_set[
'description'])) {
118 $this->tpl->setVariable(
'VAL_DESC', $a_set[
'description']);
121 $ref = $a_set[
'parent'];
123 $this->tpl->setVariable(
'CONTEXT', $this->
lng->txt(
'rbac_context_global'));
125 $this->tpl->setVariable(
132 if ($this->system->checkAccess(
'write', $this->role_folder_id)) {
134 $this->tpl->setVariable(
'COPY_TEXT', $this->
lng->txt(
'rbac_role_rights_copy'));
137 $this->tpl->setVariable(
153 case self::TYPE_VIEW:
158 $this->
addColumn($this->
lng->txt(
'search_title_description'),
'title',
'30%');
159 $this->
addColumn($this->
lng->txt(
'type'),
'rtype',
'20%');
160 $this->
addColumn($this->
lng->txt(
'context'),
'',
'40%');
161 $this->
addColumn($this->
lng->txt(
'actions'),
'',
'10%');
164 if (
$GLOBALS[
'DIC'][
'rbacsystem']->checkAccess(
172 case self::TYPE_SEARCH:
176 $this->
addColumn($this->
lng->txt(
'search_title_description'),
'title',
'30%');
177 $this->
addColumn($this->
lng->txt(
'type'),
'rtype',
'20%');
178 $this->
addColumn($this->
lng->txt(
'context'),
'',
'50%');
179 $this->
setTitle($this->
lng->txt(
'rbac_role_rights_copy'));
185 $this->
setRowTemplate(
'tpl.role_row.html',
'components/ILIAS/AccessControl');
202 $this->type = $a_type;
219 case self::TYPE_VIEW:
228 case self::TYPE_SEARCH:
240 $roles->readFromSession();
242 if (!$roles->getValue()) {
251 $title->readFromSession();
253 $this->
filter[self::FILTER_ROLE_TYPE] = (
int) $roles->getValue();
254 $this->
filter[self::FILTER_TITLE] = (string)
$title->getValue();
261 public function parse(
int $role_folder_id): void
266 if ($this->
getType() == self::TYPE_VIEW) {
267 $filter_orig = $this->
filter[self::FILTER_TITLE];
268 $type_filter = $this->
filter[self::FILTER_ROLE_TYPE];
276 foreach ($this->rbacreview->getRolesByFilter($type_filter, 0,
'') as $role) {
280 $this->tree->isDeleted($role[
'parent']) ||
281 !$this->tree->isInTree($role[
'parent'])
287 if (strlen($filter_orig)) {
288 if (stristr(
$title, $filter_orig) ==
false) {
293 $rows[$counter][
'title_orig'] = $role[
'title'];
294 $rows[$counter][
'title'] =
$title;
295 $rows[$counter][
'description'] = $role[
'description'];
296 $rows[$counter][
'obj_id'] = $role[
'obj_id'];
297 $rows[$counter][
'parent'] = $role[
'parent'];
298 $rows[$counter][
'type'] = $role[
'type'];
300 $auto = substr($role[
'title'], 0, 3) ==
'il_';
303 if ($role[
'type'] ==
'rolt') {
304 $rows[$counter][
'rtype'] = $auto ? self::TYPE_ROLT_AU : self::TYPE_ROLT_UD;
308 $rows[$counter][
'rtype'] = self::TYPE_GLOBAL_AU;
310 $rows[$counter][
'rtype'] = self::TYPE_GLOBAL_UD;
313 $rows[$counter][
'rtype'] = $auto ? self::TYPE_LOCAL_AU : self::TYPE_LOCAL_UD;
329 $this->role_title_filter = $a_filter;
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setDisableFilterHiding(bool $a_val=true)
const FILTER_NOT_INTERNAL
__construct(object $a_parent_gui, string $a_parent_cmd)
parse(int $role_folder_id)
Parse role list.
TableGUI for the presentation og roles and role templates.
string $role_title_filter
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setDefaultOrderField(string $a_defaultorderfield)
static _getTranslation(string $a_role_title)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
setRoleTitleFilter(string $a_filter)
addMultiCommand(string $a_cmd, string $a_text)
setMaxCount(int $a_max_count)
set max.