62 $ilCtrl = $DIC[
'ilCtrl'];
63 $ilTabs = $DIC[
'ilTabs'];
66 $ilToolbar = $DIC[
'ilToolbar'];
70 $this->ctrl = $ilCtrl;
72 $this->parent_object = $parent_gui->object;
73 $this->tabs_gui = $this->parent_gui->tabs_gui;
74 $this->toolbar = $ilToolbar;
77 $this->toolbar = $ilToolbar;
80 $this->tabs_gui->setTabActive(
"orgu_staff");
93 $next_class = $this->ctrl->getNextClass($this);
94 $cmd = $this->ctrl->getCmd();
96 switch ($next_class) {
97 case 'ilrepositorysearchgui':
99 $this->ctrl->forwardCommand($repo);
104 $this->tabs_gui->activateSubTab(
"show_staff");
107 case 'showOtherRoles':
108 $this->tabs_gui->activateSubTab(
"show_other_roles");
112 $this->tabs_gui->activateSubTab(
"show_staff_rec");
115 case 'confirmRemoveFromRole':
116 case 'confirmRemoveFromEmployees':
117 case 'confirmRemoveFromSuperiors':
121 case 'addOtherRoles':
122 case 'fromSuperiorToEmployee':
123 case 'fromEmployeeToSuperior':
124 case 'removeFromSuperiors':
125 case 'removeFromEmployees':
126 case 'removeFromRole':
130 throw new ilException(
"Unknown command for command class ilOrgUnitStaffGUI: " . $cmd);
144 $this->ctrl->redirect($this->parent_gui,
"");
146 if ($this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
149 $this->ctrl->setParameter($this,
"recursive",
false);
156 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
158 $this->ctrl->redirect($this->parent_gui,
"");
160 if ($this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
171 $this->ctrl->redirect($this->parent_gui,
"");
173 $this->ctrl->setParameter($this,
"recursive",
true);
181 "employee" => $this->lng->txt(
"employee"),
182 "superior" => $this->lng->txt(
"superior"),
184 $this->ctrl->setParameterByClass(
'ilRepositorySearchGUI',
'addusertype',
'staff');
186 'auto_complete_name' => $this->lng->txt(
'user'),
187 'user_type' => $types,
188 'submit_name' => $this->lng->txt(
'add'),
195 $arrLocalRoles = $this->rbacreview->getLocalRoles($this->parent_object->getRefId());
197 foreach ($arrLocalRoles as $role_id) {
199 if (!preg_match(
"/il_orgu_/", $ilObjRole->getUntranslatedTitle())) {
200 $types[$role_id] = $ilObjRole->getPresentationTitle();
203 $this->ctrl->setParameterByClass(
'ilRepositorySearchGUI',
'addusertype',
'other');
205 'auto_complete_name' => $this->lng->txt(
'user'),
206 'user_type' => $types,
207 'submit_name' => $this->lng->txt(
'add'),
214 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
216 $this->ctrl->redirect($this->parent_gui,
"");
219 $users = explode(
',',
$_POST[
'user_login']);
221 foreach ($users as $user) {
224 $user_ids[] = $user_id;
228 if (!count($user_ids)) {
230 $this->ctrl->redirect($this,
"showStaff");
233 $user_type = isset(
$_POST[
'user_type']) ?
$_POST[
'user_type'] : 0;
234 if ($user_type ==
"employee") {
235 $this->parent_object->assignUsersToEmployeeRole($user_ids);
236 } elseif ($user_type ==
"superior") {
237 $this->parent_object->assignUsersToSuperiorRole($user_ids);
239 throw new Exception(
"The post request didn't specify wether the user_ids should be assigned to the employee or the superior role.");
242 ilUtil::sendSuccess($this->lng->txt(
"users_successfuly_added"),
true);
243 $this->ctrl->redirect($this,
"showStaff");
249 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
251 $this->ctrl->redirect($this->parent_gui,
"");
254 $users = explode(
',',
$_POST[
'user_login']);
256 foreach ($users as $user) {
259 $user_ids[] = $user_id;
262 $role_id = isset(
$_POST[
'user_type']) ?
$_POST[
'user_type'] : 0;
263 foreach ($user_ids as $user_id) {
264 $this->parent_object->assignUserToLocalRole($role_id, $user_id);
266 ilUtil::sendSuccess($this->lng->txt(
"users_successfuly_added"),
true);
267 $this->ctrl->redirect($this,
"showOtherRoles");
283 $superior_table->parseData();
284 $superior_table->setTitle(
$lng->txt(
"orgu_superior"));
286 $employee_table->parseData();
287 $employee_table->setTitle(
$lng->txt(
"orgu_employee"));
289 return $superior_table->getHTML() . $employee_table->getHTML();
298 $arrLocalRoles =
$rbacreview->getLocalRoles($this->parent_object->getRefId());
300 foreach ($arrLocalRoles as $role_id) {
302 if (!preg_match(
"/il_orgu_/", $ilObjRole->getUntranslatedTitle())) {
304 $other_roles_table->readData();
305 $html .= $other_roles_table->getHTML() .
"<br/>";
309 $html =
$lng->txt(
"no_roles");
318 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
320 $this->ctrl->redirect($this->parent_gui,
"");
322 $this->parent_object->deassignUserFromSuperiorRole(
$_GET[
"obj_id"]);
323 $this->parent_object->assignUsersToEmployeeRole(array(
$_GET[
"obj_id"]));
324 ilUtil::sendSuccess($this->lng->txt(
"user_changed_successful"),
true);
325 $this->ctrl->redirect($this,
"showStaff");
331 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
333 $this->ctrl->redirect($this->parent_gui,
"");
335 $this->parent_object->deassignUserFromEmployeeRole(
$_GET[
"obj_id"]);
336 $this->parent_object->assignUsersToSuperiorRole(array(
$_GET[
"obj_id"]));
337 ilUtil::sendSuccess($this->lng->txt(
"user_changed_successful"),
true);
338 $this->ctrl->redirect($this,
"showStaff");
344 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
346 $this->ctrl->redirect($this->parent_gui,
"");
349 case "confirmRemoveFromRole":
350 $this->tabs_gui->activateSubTab(
"show_other_roles");
351 $nextcmd =
"removeFromRole";
352 $paramname =
"obj_id-role_id";
355 case "confirmRemoveFromSuperiors":
356 $this->tabs_gui->activateSubTab(
"show_staff");
357 $nextcmd =
"removeFromSuperiors";
358 $paramname =
"obj_id";
361 case "confirmRemoveFromEmployees":
362 $this->tabs_gui->activateSubTab(
"show_staff");
363 $nextcmd =
"removeFromEmployees";
364 $paramname =
"obj_id";
368 include_once(
'./Services/Utilities/classes/class.ilConfirmationGUI.php');
370 $confirm->setFormAction($this->ctrl->getFormAction($this, $nextcmd));
371 $confirm->setHeaderText($this->lng->txt(
'orgu_staff_deassign'));
372 $confirm->setConfirm($this->lng->txt(
'confirm'), $nextcmd);
373 $confirm->setCancel($this->lng->txt(
'cancel'),
'showStaff');
378 $arrUser[
'lastname'] .
', ' . $arrUser[
'firstname'] .
' [' . $arrUser[
'login']
382 $this->tpl->setContent($confirm->getHTML());
388 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
390 $this->ctrl->redirect($this->parent_gui,
"");
392 $this->parent_object->deassignUserFromSuperiorRole(
$_POST[
"obj_id"]);
394 if (!$this->rbacreview->isAssigned(
$_POST[
"obj_id"], $this->parent_object->getEmployeeRole())) {
395 ilObjUser::_removeOrgUnit(
$_POST[
"obj_id"], $this->parent_object->getRefId());
397 ilUtil::sendSuccess($this->lng->txt(
"deassign_user_successful"),
true);
398 $this->ctrl->redirect($this,
"showStaff");
404 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
406 $this->ctrl->redirect($this->parent_gui,
"");
408 $this->parent_object->deassignUserFromEmployeeRole(
$_POST[
"obj_id"]);
410 if (!$this->rbacreview->isAssigned(
$_POST[
"obj_id"], $this->parent_object->getSuperiorRole())) {
411 ilObjUser::_removeOrgUnit(
$_POST[
"obj_id"], $this->parent_object->getRefId());
413 ilUtil::sendSuccess($this->lng->txt(
"deassign_user_successful"),
true);
414 $this->ctrl->redirect($this,
"showStaff");
420 if (!$this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
422 $this->ctrl->redirect($this->parent_gui,
"");
424 $arrObjIdRolId = explode(
"-",
$_POST[
"obj_id-role_id"]);
425 $this->parent_object->deassignUserFromLocalRole($arrObjIdRolId[1], $arrObjIdRolId[0]);
426 ilUtil::sendSuccess($this->lng->txt(
"deassign_user_successful"),
true);
427 $this->ctrl->redirect($this,
"showOtherRoles");
433 $this->tabs_gui->addSubTab(
"show_staff", sprintf($this->lng->txt(
"local_staff"), $this->parent_object->getTitle()), $this->ctrl->getLinkTarget($this,
"showStaff"));
434 if ($this->
ilAccess->checkAccess(
"view_learning_progress_rec",
"", $this->parent_object->getRefId())) {
435 $this->tabs_gui->addSubTab(
"show_staff_rec", sprintf($this->lng->txt(
"rec_staff"), $this->parent_object->getTitle()), $this->ctrl->getLinkTarget($this,
"showStaffRec"));
437 if ($this->
ilAccess->checkAccess(
"write",
"", $this->parent_object->getRefId())) {
438 $this->tabs_gui->addSubTab(
"show_other_roles", sprintf($this->lng->txt(
"local_other_roles"), $this->parent_object->getTitle()), $this->ctrl->getLinkTarget($this,
"showOtherRoles"));
static _lookupName($a_user_id)
lookup user name
static _checkAccessStaff($ref_id)
static _lookupId($a_user_str)
Lookup id by login.
__construct(ilObjOrgUnitGUI $parent_gui)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
Class ilOrgUnitStaffTableGUI.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
Class ilOrgUnitOtherRolesTableGUI.
static fillAutoCompleteToolbar($parent_object, ilToolbarGUI $toolbar=null, $a_options=array(), $a_sticky=false)
fill toolbar with
getStaffTableHTML($recursive=false, $table_cmd="showStaff")
static _checkAccessStaffRec($ref_id)
Confirmation screen class.