30 public function __construct(
object $a_parent_obj,
string $a_parent_cmd,
int $a_ref_id)
37 $this->positionRepo =
$dic[
"repo.Positions"];
38 $this->permissionRepo =
$dic[
"repo.Permissions"];
39 $this->operationRepo =
$dic[
"repo.Operations"];
41 $this->
lng->loadLanguageModule(
'rbac');
42 $this->
lng->loadLanguageModule(
"orgu");
44 $this->ref_id = $a_ref_id;
46 $this->
setId(
'objpositionperm_' . $this->ref_id);
48 $tpl->addJavaScript(
'assets/js/ilPermSelect.js');
50 $this->
setTitle($this->
lng->txt(
'org_permission_settings'));
53 $this->
setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
55 $this->
setRowTemplate(
"tpl.obj_position_perm_row.html",
"components/ILIAS/OrgUnit");
84 public function fillRow(array $a_set): void
87 if (isset($a_set[
'show_select_all'])) {
92 if (isset($a_set[
'header_command'])) {
98 $objdefinition = $this->
dic()[
'objDefinition'];
99 $is_plugin = $objdefinition->isPlugin($this->
getObjType());
101 foreach ($a_set as $permission) {
102 $position = $permission[
"position"];
103 $op_id = $permission[
"op_id"];
104 $operation = $permission[
"operation"];
105 $this->tpl->setCurrentBlock(
'position_td');
106 $this->tpl->setVariable(
'POSITION_ID', $position->getId());
107 $this->tpl->setVariable(
'PERM_ID', $op_id);
112 $label = $this->
dic()->language()->txt(
'org_op_' . $operation->getOperationString());
115 $this->tpl->setVariable(
'TXT_PERM', $label);
116 $this->tpl->setVariable(
'PERM_LONG', $op_id);
118 if ($permission[
'permission_set']) {
119 $this->tpl->setVariable(
'PERM_CHECKED',
'checked="checked"');
121 if ($permission[
'from_template']) {
122 $this->tpl->setVariable(
'PERM_DISABLED',
'disabled="disabled"');
125 $this->tpl->parseCurrentBlock();
131 $positions = $this->positionRepo->getAllPositions();
137 $operations = $this->operationRepo->getOperationsByContextName($this->
getObjType());
139 $from_templates = [];
140 foreach ($operations as $op) {
141 $ops_ids[] = $op->getOperationId();
144 foreach ($positions as $position) {
145 $ilOrgUnitPermission = $this->permissionRepo->getLocalorDefault(
150 $is_template = $ilOrgUnitPermission->isTemplate();
151 $from_templates[$position->getId()] = $is_template;
154 "op_id" => $op->getOperationId(),
156 "position" => $position,
157 "permission" => $ilOrgUnitPermission,
158 "permission_set" => $ilOrgUnitPermission->isOperationIdSelected($op->getOperationId()),
159 "from_template" => $is_template,
166 "show_select_all" =>
true,
167 "positions" => $positions,
169 "template" => $from_templates,
172 ->isPositionAccessActiveForObject($this->
getObjId())
175 "header_command" =>
true,
176 "positions" => $positions,
177 "template" => $from_templates,
186 foreach ($positions as $position) {
187 $this->
addColumn($position->getTitle(),
'',
'',
'',
false, $position->getDescription());
203 foreach ($row[
"positions"] as $position) {
205 $this->tpl->setCurrentBlock(
'position_select_all');
206 $id = $position->getId();
207 $this->tpl->setVariable(
'JS_ROLE_ID',
$id);
208 $this->tpl->setVariable(
'JS_SUBID', 0);
209 $this->tpl->setVariable(
'JS_ALL_PERMS',
"['" . implode(
"','", $row[
'ops']) .
"']");
210 $this->tpl->setVariable(
'JS_FORM_NAME', $this->
getFormName());
211 $this->tpl->setVariable(
'TXT_SEL_ALL', $this->
lng->txt(
'select_all'));
212 if ($row[
"template"][
$id]) {
213 $this->tpl->setVariable(
'ALL_DISABLED',
"disabled='disabled'");
215 $this->tpl->parseCurrentBlock();
224 foreach ($row[
"positions"] as $position) {
225 $this->tpl->setCurrentBlock(
'header_command');
226 $this->tpl->setVariable(
'POSITION_ID', $position->getId());
227 $this->tpl->setVariable(
'HEADER_COMMAND_TXT', $this->
dic()
229 ->txt(
'positions_override_operations'));
230 if ($this->permissionRepo->find($this->getRefId(), $position->getId())) {
231 $this->tpl->setVariable(
'HEADER_CHECKED',
"checked='checked'");
234 $this->tpl->parseCurrentBlock();
setNoEntriesText(string $a_text)
fillHeaderCommand(array $row)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
Interface Observer Contains several chained tasks and infos about them.
setDisableFilterHiding(bool $a_val=true)
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_ref_id)
ilOrgUnitPermissionDBRepository $permissionRepo
fillSelectAll(array $row)
static _lookupObjId(int $ref_id)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static lookupTxtById(string $plugin_id, string $lang_var)
ilOrgUnitOperationDBRepository $operationRepo
initColumns(array $positions)
__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)
language()
description: > Example for rendring a language glyph.
const CMD_SAVE_POSITIONS_PERMISSIONS
static _lookupType(int $id, bool $reference=false)
ilOrgUnitPositionDBRepository $positionRepo
setEnableHeader(bool $a_enableheader)