35 $this->access = ilMyStaffAccess::getInstance();
46 if ($this->access->hasCurrentUserAccessToMyStaff()) {
50 $DIC->ctrl()->redirectByClass(ilDashboardGUI::class,
"");
62 $cmd = $DIC->ctrl()->getCmd();
63 $next_class = $DIC->ctrl()->getNextClass();
65 switch ($next_class) {
66 case strtolower(ilFormPropertyDispatchGUI::class):
69 $DIC->ctrl()->setReturn($this, self::CMD_INDEX);
71 $this->table->executeCommand();
76 case self::CMD_RESET_FILTER:
77 case self::CMD_APPLY_FILTER:
79 case self::CMD_GET_ACTIONS:
110 $DIC->ui()->mainTemplate()->setTitle($DIC->language()->txt(
'mst_list_courses'));
111 $DIC->ui()->mainTemplate()->setContent($this->table->getHTML());
121 $this->table->writeFilterToSession();
122 $this->table->resetOffset();
133 $this->table->resetOffset();
134 $this->table->resetFilter();
146 return $this->table->getId();
157 $DIC->ctrl()->redirect($this);
168 $mst_co_usr_id = $DIC->http()->request()->getQueryParams()[
'mst_lco_usr_id'];
169 $mst_lco_crs_ref_id = $DIC->http()->request()->getQueryParams()[
'mst_lco_crs_ref_id'];
171 if ($mst_co_usr_id > 0 && $mst_lco_crs_ref_id > 0) {
174 if ($DIC->access()->checkAccess(
"visible",
"", $mst_lco_crs_ref_id)) {
181 'user_id' => $mst_co_usr_id,
182 'object_reference.deleted' => null
183 ), array(
'user_id' =>
'=',
'object_reference.deleted' =>
'!=' ))->
get() as $org_unit_assignment) {
184 if ($DIC->access()->checkAccess(
"read",
"", $org_unit_assignment->getOrguId())) {
186 $selection->addItem($org_units[$org_unit_assignment->getOrguId()],
'', $link);
190 $selection = ilMyStaffGUI::extendActionMenuWithUserActions($selection, $mst_co_usr_id, rawurlencode($DIC->ctrl()
191 ->getLinkTarget($this, self::CMD_INDEX)));
193 echo $selection->getHTML(
true);
static _lookupTitle($a_id)
static innerjoin($tablename, $on_this, $on_external, $fields=array(' *'), $operator='=', $both_external=false)
static _getStaticLink( $a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
static _lookupObjectId($a_ref_id)
static getTextRepresentationOfOrgUnits($sort_by_title=true)
Get ref id path array.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
Class ilMStListCoursesTableGUI.