28 protected \ILIAS\HTTP\Services
$http;
37 string $staff =
"employee",
38 bool $recursive =
false,
39 string $template_context =
"" 42 $this->
ctrl = $DIC->ctrl();
43 $this->
tabs = $DIC->tabs();
44 $this->
lng = $DIC->language();
45 $this->
http = $DIC->http();
50 $this->
setId(
"il_orgu_" . $staff);
71 $this->
addColumn($this->
lng->txt(
"firstname"),
"first_name");
72 $this->
addColumn($this->
lng->txt(
"lastname"),
"last_name");
73 if ($this->recursive) {
74 $this->
addColumn($this->
lng->txt(
'obj_orgu'),
'org_units');
81 if ($this->staff ===
"employee") {
83 } elseif ($this->staff ===
"superior") {
86 throw new \RuntimeException(
"The ilOrgUnitStaffTableGUI's staff variable has to be either 'employee' or 'superior'");
95 foreach ($user_ids as $user_id) {
122 $set[
"first_name"] = $user->getFirstname();
123 $set[
"last_name"] = $user->getLastname();
124 $set[
"user_object"] = $user;
125 $set[
"user_id"] = $user_id;
126 if ($this->recursive) {
136 $ilAccess = $DIC[
'ilAccess'];
138 $ilAccess = $DIC[
'ilAccess'];
139 $this->tpl->setVariable(
"FIRST_NAME", $a_set[
"first_name"]);
140 $this->tpl->setVariable(
"LAST_NAME", $a_set[
"last_name"]);
141 if ($this->recursive) {
143 $this->tpl->setVariable(
"ORG_UNITS", implode(
', ', $orgUnitsTitles));
145 $this->
ctrl->setParameterByClass(
"illearningprogressgui",
"obj_id", $a_set[
"user_id"]);
146 $this->
ctrl->setParameterByClass(
"ilobjorgunitgui",
"obj_id", $a_set[
"user_id"]);
148 $selection->setListTitle(
$lng->
txt(
"Actions"));
149 $selection->setId(
"selection_list_user_lp_" . $a_set[
"user_id"]);
151 if ($ilAccess->checkAccess(
152 "view_learning_progress",
159 $lng->
txt(
"show_learning_progress"),
160 "show_learning_progress",
161 $this->
ctrl->getLinkTargetByClass(array(
"ilAdministrationGUI",
163 "ilLearningProgressGUI" 168 if ($this->staff ===
"employee") {
170 $this->
lng->txt(
"remove"),
171 "delete_from_employees",
172 $this->
ctrl->getLinkTargetByClass(
"ilOrgUnitStaffGUI",
"confirmRemoveFromEmployees")
175 $this->
lng->txt(
"change_to_superior"),
176 "change_to_superior",
177 $this->
ctrl->getLinkTargetByClass(
"ilOrgUnitStaffGUI",
"fromEmployeeToSuperior")
180 if ($this->staff ===
"superior") {
182 $this->
lng->txt(
"remove"),
183 "delete_from_superiors",
184 $this->
ctrl->getLinkTargetByClass(
"ilOrgUnitStaffGUI",
"confirmRemoveFromSuperiors")
187 $this->
lng->txt(
"change_to_employee"),
188 "change_to_employee",
189 $this->
ctrl->getLinkTargetByClass(
"ilOrgUnitStaffGUI",
"fromSuperiorToEmployee")
193 $this->tpl->setVariable(
"ACTIONS", $selection->getHTML());
getRowForUser(int $user_id)
setTopCommands(bool $a_val)
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...
setFormAction(string $a_form_action, bool $a_multipart=false)
setEnableTitle(bool $a_enabletitle)
setShowTemplates(bool $a_value)
setFormName(string $a_name="")
parseRows(array $user_ids)
ILIAS HTTP Services $http
static _enabledUserRelatedData()
static _enabledLearningProgress()
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
static http()
Fetches the global http state from ILIAS.
setDefaultOrderField(string $a_defaultorderfield)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjectGUI Basic methods of all Output classes.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
ILIAS Refinery Factory $refinery
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
__construct(ilObjectGUI $parent_obj, string $parent_cmd, string $staff="employee", bool $recursive=false, string $template_context="")
setRecursive(bool $recursive)
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)
setEnableHeader(bool $a_enableheader)
setPrefix(string $a_prefix)