45 $main_tpl = $DIC->ui()->mainTemplate();
46 $this->main_tpl = $DIC->ui()->mainTemplate();
47 $this->
ctrl = $DIC->ctrl();
48 $this->
toolbar = $DIC->toolbar();
49 $this->tpl = $DIC->ui()->mainTemplate();
58 $main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
"permission_denied"),
true);
59 $DIC->ctrl->redirectByClass(ilObjOrgUnitGUI::class);
66 ilOrgUnitDefaultPermissionGUI::class,
67 ilOrgUnitUserAssignmentGUI::class,
76 protected function index(): void
78 self::initAuthoritiesRenderer();
80 $b->setUrl($this->
ctrl->getLinkTarget($this, self::CMD_ADD));
81 $b->setCaption(
'add_position');
88 protected function add(): void
91 $this->tpl->setContent($form->getHTML());
97 if ($form->saveObject() ===
true) {
98 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'msg_position_created'),
true);
99 $this->
ctrl->redirect($this, self::CMD_INDEX);
102 $this->tpl->setContent($form->getHTML());
105 protected function edit(): void
112 $this->tpl->setContent($form->getHTML());
119 $form->setValuesByPost();
120 if ($form->saveObject() ===
true) {
121 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'msg_position_updated'),
true);
122 $this->
ctrl->redirect($this, self::CMD_INDEX);
125 $this->tpl->setContent($form->getHTML());
131 if ($position->isCorePosition()) {
135 $assignments = $ilOrgUnitUserAssignmentQueries->getUserAssignmentsOfPosition($position->getId());
139 foreach ($assignments as $assignment) {
141 $assignment->getUserId(),
142 $employee_position->getId(),
143 $assignment->getOrguId()
145 $assignment->delete();
148 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'msg_assignment_to_employee_done'),
true);
154 if ($position->isCorePosition()) {
157 $position->afterObjectLoad();
158 self::initAuthoritiesRenderer();
159 $this->
language->loadLanguageModule(
'orgu');
160 $position_string = $this->
language->txt(
"position") .
": ";
161 $authority_string = $this->
language->txt(
"authorities") .
": ";
162 $user_string = $this->
language->txt(
"user_assignments") .
": ";
166 $confirmation->setFormAction($this->
ctrl->getFormAction($this));
167 $confirmation->setCancel($this->
language->txt(self::CMD_CANCEL), self::CMD_CANCEL);
168 $confirmation->setConfirm($this->
language->txt(self::CMD_DELETE), self::CMD_DELETE);
169 $confirmation->setHeaderText($this->
language->txt(
'msg_confirm_deletion'));
170 $confirmation->addItem(self::AR_ID, $position->getId(), $position_string
171 . $position->getTitle());
173 $authority_string .= implode(
", ", $position->getAuthorities());
174 $confirmation->addItem(
'authorities',
true, $authority_string);
177 $userIdsOfPosition = $ilOrgUnitUserAssignmentQueries->getUserIdsOfPosition($position->getId());
179 $usersOfPosition = $ilOrgUnitUserQueries->findAllUsersByUserIds($userIdsOfPosition);
180 $userNames = $ilOrgUnitUserQueries->getAllUserNames($usersOfPosition);
182 $confirmation->addItem(
'users',
true, $user_string . implode(
', ', $userNames));
185 $checkbox_assign_users->setChecked(
true);
186 $checkbox_assign_users->setValue(1);
187 $checkbox_assign_users->setOptionTitle(
'Assign affected users to employee role');
188 $confirmation->addItem(
'assign_users',
'', $checkbox_assign_users->render());
190 $this->tpl->setContent($confirmation->getHTML());
193 protected function delete():
void 195 if ($_POST[
'assign_users']) {
199 $position->afterObjectLoad();
200 $position->deleteWithAllDependencies();
201 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'msg_deleted'),
true);
202 $this->
ctrl->redirect($this, self::CMD_INDEX);
207 $this->
ctrl->redirect($this, self::CMD_INDEX);
212 return ilOrgUnitPosition::find($this->
str(self::AR_ID));
215 public static function initAuthoritiesRenderer():
string 218 $lang->loadLanguageModule(
'orgu');
227 foreach ($lang_keys as
$key) {
235 $ilOrgUnitAuthority = ilOrgUnitAuthority::find(
$id);
237 switch ($ilOrgUnitAuthority->getScope()) {
242 $in_txt = $t[
"scope_" . $ilOrgUnitAuthority->getScope()];
246 switch ($ilOrgUnitAuthority->getOver()) {
248 $over_txt = $t[
"over_" . $ilOrgUnitAuthority->getOver()];
256 return " " . $t[
"over"] .
" " . $over_txt .
" " . $t[
"in"] .
" " . $in_txt;
263 $this->
ctrl->saveParameter($this,
'arid');
264 $this->
ctrl->saveParameterByClass(ilOrgUnitDefaultPermissionGUI::class,
'arid');
266 ->getLinkTarget($this, self::CMD_EDIT));
268 ->getLinkTargetByClass(
269 ilOrgUnitDefaultPermissionGUI::class,
activeSubTab(string $subtab_id)
static findOrCreateAssignment(int $user_id, int $position_id, int $orgu_id)
static getCorePosition(int $core_identifier)
const CORE_POSITION_EMPLOYEE
Class ilOrgUnitPositionGUI.
pushSubTab(string $subtab_id, string $url)
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
trait BaseGUIRequest
Base gui request wrapper.
static replaceNameRenderer(Closure $closure)
ilGlobalTemplateInterface $tpl
ilGlobalTemplateInterface $main_tpl
static _checkAccessPositions(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static findOrGetInstance($primary_key, array $add_constructor_args=array())
Class ilOrgUnitPositionTableGUI.
const CMD_CONFIRM_DELETION
const SCOPE_SUBSEQUENT_ORGUS
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...