46 $this->tpl = $DIC->ui()->mainTemplate();
47 $this->
ctrl = $DIC->ctrl();
49 $this->parent_object = $parent_gui->object;
50 $this->tabs_gui = $this->parent_gui->tabs_gui;
51 $this->
toolbar = $DIC->toolbar();
52 $this->
lng = $DIC->language();
54 $this->
toolbar = $DIC->toolbar();
55 $this->rbacreview = $DIC->rbac()->review();
57 $this->tabs_gui->setTabActive(
"orgu_staff");
69 $next_class = $this->
ctrl->getNextClass($this);
70 $cmd = $this->
ctrl->getCmd();
72 switch ($next_class) {
73 case 'ilrepositorysearchgui':
75 $this->
ctrl->forwardCommand($repo);
80 $this->tabs_gui->activateSubTab(
"show_staff");
83 case 'showOtherRoles':
84 $this->tabs_gui->activateSubTab(
"show_other_roles");
88 $this->tabs_gui->activateSubTab(
"show_staff_rec");
91 case 'confirmRemoveFromRole':
92 case 'confirmRemoveFromEmployees':
93 case 'confirmRemoveFromSuperiors':
98 case 'fromSuperiorToEmployee':
99 case 'fromEmployeeToSuperior':
100 case 'removeFromSuperiors':
101 case 'removeFromEmployees':
102 case 'removeFromRole':
106 throw new ilException(
"Unknown command for command class ilOrgUnitStaffGUI: " . $cmd);
121 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
122 $this->
ctrl->redirect($this->parent_gui,
"");
124 if ($this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
127 $this->
ctrl->setParameter($this,
"recursive",
false);
133 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
134 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
135 $this->
ctrl->redirect($this->parent_gui,
"");
137 if ($this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
146 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
147 $this->
ctrl->redirect($this->parent_gui,
"");
149 $this->
ctrl->setParameter($this,
"recursive",
true);
156 "employee" => $this->
lng->txt(
"employee"),
157 "superior" => $this->
lng->txt(
"superior"),
159 $this->
ctrl->setParameterByClass(
'ilRepositorySearchGUI',
'addusertype',
'staff');
161 'auto_complete_name' => $this->
lng->txt(
'user'),
162 'user_type' => $types,
163 'submit_name' => $this->
lng->txt(
'add'),
169 $arrLocalRoles = $this->rbacreview->getLocalRoles($this->parent_object->getRefId());
171 foreach ($arrLocalRoles as $role_id) {
173 if (!preg_match(
"/il_orgu_/", $ilObjRole->getUntranslatedTitle())) {
174 $types[$role_id] = $ilObjRole->getPresentationTitle();
177 $this->
ctrl->setParameterByClass(
'ilRepositorySearchGUI',
'addusertype',
'other');
179 'auto_complete_name' => $this->
lng->txt(
'user'),
180 'user_type' => $types,
181 'submit_name' => $this->
lng->txt(
'add'),
187 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
188 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
189 $this->
ctrl->redirect($this->parent_gui,
"");
192 $users = explode(
',', $_POST[
'user_login']);
194 foreach ($users as $user) {
197 $user_ids[] = $user_id;
201 if (!count($user_ids)) {
202 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"user_not_found"),
true);
203 $this->
ctrl->redirect($this,
"showStaff");
206 $user_type = isset($_POST[
'user_type']) ? $_POST[
'user_type'] : 0;
207 if ($user_type ==
"employee") {
208 $this->parent_object->assignUsersToEmployeeRole($user_ids);
209 } elseif ($user_type ==
"superior") {
210 $this->parent_object->assignUsersToSuperiorRole($user_ids);
212 throw new Exception(
"The post request didn't specify wether the user_ids should be assigned to the employee or the superior role.");
215 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"users_successfuly_added"),
true);
216 $this->
ctrl->redirect($this,
"showStaff");
221 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
222 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
223 $this->
ctrl->redirect($this->parent_gui,
"");
226 $users = explode(
',', $_POST[
'user_login']);
228 foreach ($users as $user) {
231 $user_ids[] = $user_id;
234 $role_id = isset($_POST[
'user_type']) ? $_POST[
'user_type'] : 0;
235 foreach ($user_ids as $user_id) {
236 $this->parent_object->assignUserToLocalRole($role_id, $user_id);
238 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"users_successfuly_added"),
true);
239 $this->
ctrl->redirect($this,
"showOtherRoles");
251 $rbacreview = $DIC[
'rbacreview'];
253 $superior_table->parseData();
254 $superior_table->setTitle($lng->
txt(
"il_orgu_superior"));
256 $employee_table->parseData();
257 $employee_table->setTitle($lng->
txt(
"il_orgu_employee"));
259 return $superior_table->getHTML() . $employee_table->getHTML();
266 $rbacreview = $DIC[
'rbacreview'];
267 $arrLocalRoles = $rbacreview->
getLocalRoles($this->parent_object->getRefId());
269 foreach ($arrLocalRoles as $role_id) {
271 if (!preg_match(
"/il_orgu_/", $ilObjRole->getUntranslatedTitle())) {
273 $other_roles_table->readData();
274 $html .= $other_roles_table->getHTML() .
"<br/>";
278 $html = $lng->
txt(
"no_roles");
286 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
287 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
288 $this->
ctrl->redirect($this->parent_gui,
"");
290 $this->parent_object->deassignUserFromSuperiorRole(
$_GET[
"obj_id"]);
291 $this->parent_object->assignUsersToEmployeeRole(array(
$_GET[
"obj_id"]));
292 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"user_changed_successful"),
true);
293 $this->
ctrl->redirect($this,
"showStaff");
298 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
299 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
300 $this->
ctrl->redirect($this->parent_gui,
"");
302 $this->parent_object->deassignUserFromEmployeeRole(
$_GET[
"obj_id"]);
303 $this->parent_object->assignUsersToSuperiorRole(array(
$_GET[
"obj_id"]));
304 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"user_changed_successful"),
true);
305 $this->
ctrl->redirect($this,
"showStaff");
310 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
311 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
312 $this->
ctrl->redirect($this->parent_gui,
"");
315 case "confirmRemoveFromRole":
316 $this->tabs_gui->activateSubTab(
"show_other_roles");
317 $nextcmd =
"removeFromRole";
318 $paramname =
"obj_id-role_id";
321 case "confirmRemoveFromSuperiors":
322 $this->tabs_gui->activateSubTab(
"show_staff");
323 $nextcmd =
"removeFromSuperiors";
324 $paramname =
"obj_id";
327 case "confirmRemoveFromEmployees":
328 $this->tabs_gui->activateSubTab(
"show_staff");
329 $nextcmd =
"removeFromEmployees";
330 $paramname =
"obj_id";
335 $confirm->setFormAction($this->
ctrl->getFormAction($this, $nextcmd));
336 $confirm->setHeaderText($this->
lng->txt(
'orgu_staff_deassign'));
337 $confirm->setConfirm($this->
lng->txt(
'confirm'), $nextcmd);
338 $confirm->setCancel($this->
lng->txt(
'cancel'),
'showStaff');
343 $arrUser[
'lastname'] .
', ' . $arrUser[
'firstname'] .
' [' . $arrUser[
'login']
347 $this->tpl->setContent($confirm->getHTML());
352 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
353 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
354 $this->
ctrl->redirect($this->parent_gui,
"");
356 $this->parent_object->deassignUserFromSuperiorRole($_POST[
"obj_id"]);
358 if (!$this->rbacreview->isAssigned($_POST[
"obj_id"], $this->parent_object->getEmployeeRole())) {
359 ilObjUser::_removeOrgUnit($_POST[
"obj_id"], $this->parent_object->getRefId());
361 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"deassign_user_successful"),
true);
362 $this->
ctrl->redirect($this,
"showStaff");
367 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
368 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
369 $this->
ctrl->redirect($this->parent_gui,
"");
371 $this->parent_object->deassignUserFromEmployeeRole($_POST[
"obj_id"]);
373 if (!$this->rbacreview->isAssigned($_POST[
"obj_id"], $this->parent_object->getSuperiorRole())) {
374 ilObjUser::_removeOrgUnit($_POST[
"obj_id"], $this->parent_object->getRefId());
376 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"deassign_user_successful"),
true);
377 $this->
ctrl->redirect($this,
"showStaff");
382 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
383 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
384 $this->
ctrl->redirect($this->parent_gui,
"");
386 $arrObjIdRolId = explode(
"-", $_POST[
"obj_id-role_id"]);
387 $this->parent_object->deassignUserFromLocalRole($arrObjIdRolId[1], $arrObjIdRolId[0]);
388 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"deassign_user_successful"),
true);
389 $this->
ctrl->redirect($this,
"showOtherRoles");
394 $this->tabs_gui->addSubTab(
396 sprintf($this->
lng->txt(
"local_staff"), $this->parent_object->getTitle()),
397 $this->
ctrl->getLinkTarget($this,
"showStaff")
399 if ($this->
ilAccess->checkAccess(
"view_learning_progress_rec",
"", $this->parent_object->getRefId())) {
400 $this->tabs_gui->addSubTab(
402 sprintf($this->
lng->txt(
"rec_staff"), $this->parent_object->getTitle()),
403 $this->
ctrl->getLinkTarget($this,
"showStaffRec")
406 if ($this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
407 $this->tabs_gui->addSubTab(
409 sprintf($this->
lng->txt(
"local_other_roles"), $this->parent_object->getTitle()),
410 $this->
ctrl->getLinkTarget($this,
"showOtherRoles")
static _checkAccessStaffRec(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
getLocalRoles(int $a_ref_id)
Get local roles of object.
static _lookupName(int $a_user_id)
lookup user name
static _lookupId($a_user_str)
__construct(ilObjOrgUnitGUI $parent_gui)
ilAccessHandler $ilAccess
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
static fillAutoCompleteToolbar(object $parent_object, ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt('user'), auto_complete_size = 15, user_type = array(ilCoursePar...
static _checkAccessStaff(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getStaffTableHTML($recursive=false, $table_cmd="showStaff")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...