19 declare(strict_types=1);
50 $this->positionRepo =
$dic[
"repo.Positions"];
51 $this->assignmentRepo =
$dic[
"repo.UserAssignments"];
52 $this->permissionRepo =
$dic[
"repo.Permissions"];
54 $to_int =
$dic[
'refinery']->kindlyTo()->int();
55 $ref_id =
$dic[
'query']->retrieve(
'ref_id', $to_int);
56 $this->link_factory =
$dic[
'ui.factory']->link();
61 $this->
toolbar = $DIC->toolbar();
70 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
71 $this->
ctrl->redirectByClass(ilObjOrgUnitGUI::class);
74 $this->post = $DIC->http()->wrapper()->post();
80 ilOrgUnitUserAssignmentGUI::class,
89 protected function index(): void
92 $link = $this->link_factory->standard(
93 $this->
lng->txt(
'add_position'),
96 $this->
toolbar->addComponent($link);
98 $table = $this->
getTable()->withRequest($this->request);
99 $this->tpl->setContent($this->ui_renderer->render($table));
102 protected function add(): void
104 $position = $this->positionRepo->create();
106 $this->tpl->setContent($form->getHTML());
113 if ($form->saveObject() ===
true) {
114 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_position_created'),
true);
115 $this->
ctrl->redirect($this, self::CMD_INDEX);
118 $this->tpl->setContent($form->getHTML());
121 protected function edit(): void
128 $this->tpl->setContent($form->getHTML());
136 $form->setValuesByPost();
137 if ($form->saveObject() ===
true) {
138 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_position_updated'),
true);
139 $this->
ctrl->redirect($this, self::CMD_INDEX);
142 $this->tpl->setContent($form->getHTML());
150 $this->tpl->setContent($this->ui_renderer->render($form));
156 ->withRequest($this->request);
157 if ($form->getData()) {
158 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_success_permission_saved'),
true);
161 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_success_permission_not_saved'),
true);
162 $this->tpl->setContent($this->ui_renderer->render($form));
169 $sections[] = $this->ui_factory->input()->field()->section(
171 $this->
lng->txt(
"form_title_org_default_permissions_update")
175 $permissions = $this->permissionRepo->getDefaultsForActiveContexts($position_id);
177 foreach ($permissions as $perm) {
179 $operations = $perm->getPossibleOperations();
180 foreach ($operations as $operation) {
181 $fields[$operation->getOperationId()] = $this->ui_factory->input()->field()
182 ->checkbox($this->
lng->txt(
"org_op_{$operation->getOperationString()}"))
184 $perm->isOperationIdSelected($operation->getOperationId())
188 $context = $perm->getContext()->getContext();
189 $sections[$perm->getId()] = $this->ui_factory->input()->field()
191 ->withAdditionalTransformation(
192 $this->
refinery->custom()->transformation(
193 function ($v) use ($operations, $perm, $permission_repo) {
194 $v = array_filter($v);
195 $nu_ops = array_filter($operations, fn($o) => array_key_exists($o->getOperationId(), $v));
196 $protected = $perm->isProtected();
198 $perm = $perm->withOperations($nu_ops)->withProtected(
false);
199 $permission_repo->store($perm);
208 return $this->ui_factory->input()->container()->form()->standard($form_action, $sections);
213 $lang_code =
"obj_{$context}";
217 return $this->
lng->txt($lang_code);
222 if ($this->post->has(
'cmd')) {
223 $cmd = $this->post->retrieve(
225 $this->
refinery->custom()->transformation(
226 fn($v) => array_key_first($v)
229 if ($cmd === self::CMD_CANCEL) {
230 $url = $this->url_builder
231 ->withParameter($this->action_token, self::CMD_INDEX)
239 protected function assign(
int $position_id): void
241 $position = $this->positionRepo->getSingle($position_id,
'id');
242 if ($position->isCorePosition()) {
247 $assignments = $this->assignmentRepo->getByPosition($position->getId());
248 foreach ($assignments as $assignment) {
249 $this->assignmentRepo->store($assignment->withPositionId($employee_position->getId()));
252 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_assignment_to_employee_done'),
true);
258 if ($position->isCorePosition()) {
261 $this->
lng->loadLanguageModule(
'orgu');
262 $position_string = $this->
lng->txt(
"position") .
": ";
263 $authority_string = $this->
lng->txt(
"authorities") .
": ";
264 $user_string = $this->
lng->txt(
"user_assignments") .
": ";
267 $confirmation->setFormAction($this->
ctrl->getFormAction($this));
268 $confirmation->setCancel($this->
lng->txt(self::CMD_CANCEL), self::CMD_CANCEL);
269 $confirmation->setConfirm($this->
lng->txt(self::CMD_DELETE), self::CMD_DELETE);
270 $confirmation->setHeaderText($this->
lng->txt(
'msg_confirm_deletion'));
271 $confirmation->addItem(self::AR_ID, (
string) $position->getId(), $position_string
272 . $position->getTitle());
275 $confirmation->addItem(
'authorities',
'', $authority_string);
278 $userIdsOfPosition = $this->assignmentRepo->getUsersByPosition($position->getId());
280 $usersOfPosition = $ilOrgUnitUserQueries->findAllUsersByUserIds($userIdsOfPosition);
281 $userNames = $ilOrgUnitUserQueries->getAllUserNames($usersOfPosition);
283 $confirmation->addItem(
'users',
'', $user_string . implode(
', ', $userNames));
286 $checkbox_assign_users->setChecked(
true);
287 $checkbox_assign_users->setValue(
'1');
288 $checkbox_assign_users->setOptionTitle(
'Assign affected users to employee role');
289 $confirmation->addItem(
'assign_users',
'', $checkbox_assign_users->render());
291 $this->tpl->setContent($confirmation->getHTML());
294 protected function delete():
void 296 $position_id = $this->post->retrieve(
299 $this->refinery->kindlyTo()->int(),
304 if ($position_id ===
null) {
305 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_position_delete_fail'),
true);
306 $this->
ctrl->redirect($this, self::CMD_INDEX);
309 if ($this->post->has(
'assign_users')
310 && $this->post->retrieve(
313 $this->refinery->kindlyTo()->bool(),
318 $this->
assign($position_id);
320 $this->positionRepo->delete($position_id);
321 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_deleted'),
true);
322 $this->
ctrl->redirect($this, self::CMD_INDEX);
327 $this->
ctrl->redirect($this, self::CMD_INDEX);
333 return $this->positionRepo->getSingle(
$id,
'id');
339 return $this->url_builder
340 ->withParameter($this->row_id_token, $target_id)
341 ->withParameter($this->action_token, $action)
342 ->buildURI()->__toString();
348 self::SUBTAB_SETTINGS,
352 self::SUBTAB_PERMISSIONS,
360 'title' => $this->ui_factory->table()->column()->text($this->
lng->txt(
"title")),
361 'description' => $this->ui_factory->table()->column()->text($this->
lng->txt(
"description")),
362 'authorities' => $this->ui_factory->table()->column()->status($this->
lng->txt(
"authorities"))
363 ->withIsSortable(
false),
367 'edit' => $this->ui_factory->table()->action()->single(
368 $this->
lng->txt(
'edit'),
369 $this->url_builder->withParameter($this->action_token,
"edit"),
372 'delete' => $this->ui_factory->table()->action()->single(
373 $this->
lng->txt(
'delete'),
374 $this->url_builder->withParameter($this->action_token,
"confirmDeletion"),
379 return $this->ui_factory->table()
380 ->data($this->positionRepo,
'', $columns)
381 ->withId(
'orgu_positions')
382 ->withActions($actions);
393 $lang->loadLanguageModule(
'orgu');
402 foreach ($lang_keys as $key) {
403 $t[$key] =
$lang->txt($key);
406 $authority_description = [];
407 foreach ($authorities as $authority) {
408 switch ($authority->getOver()) {
410 $over_txt = $t[
"over_" . $authority->getOver()];
413 $over_txt = $this->positionRepo
414 ->getSingle($authority->getOver(),
'id')
419 $authority_description[] =
" " . $t[
"over"] .
" " . $over_txt .
" " . $t[
"in"] .
" " . $t[
"scope_" . $authority->getScope()];
422 return $authority_description;
updateDefaultPermissions()
const CORE_POSITION_EMPLOYEE
pushSubTab(string $subtab_id, string $url)
ILIAS HTTP Wrapper ArrayBasedRequestWrapper $post
Class ilOrgUnitPositionGUI.
ilOrgUnitPositionDBRepository $positionRepo
URLBuilderToken $row_id_token
trait BaseGUIRequest
Base gui request wrapper.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
initRequest(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.
ilObjectDefinition $objectDefinition
ILIAS UI Component Link Factory $link_factory
ilOrgUnitPermissionDBRepository $permissionRepo
getDefaultPermissionsForm(int $position_id)
static lookupTxtById(string $plugin_id, string $lang_var)
getSinglePosLinkTarget(string $action, ?int $pos_id=null)
static _checkAccessPositions(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
getTitleForFormHeaderByContext(string $context)
activeSubTab(string $subtab_id)
const CMD_CONFIRM_DELETION
const SCOPE_SUBSEQUENT_ORGUS
getAuthorityDescription(array $authorities)
Returns descriptions for authorities as an array of strings.
ilOrgUnitUserAssignmentDBRepository $assignmentRepo