3 declare(strict_types=1);
83 $this->talkAccess = $employeeTalkAccess;
86 $this->usrId = intval($this->request->getQueryParams()[
'usr_id']);
87 $this->
ctrl->setParameter($this,
'usr_id', $this->usrId);
88 $this->
language->loadLanguageModule(
'etal');
97 $this->
template->setOnScreenMessage(
'failure', $this->
language->txt(
"permission_denied"),
true);
98 $this->
ctrl->redirectByClass(ilDashboardGUI::class,
"");
101 if (!$this->
access->hasCurrentUserAccessToTalks() || !$this->
access->hasCurrentUserAccessToUser($this->usrId)) {
102 $this->
template->setOnScreenMessage(
'failure', $this->
language->txt(
"permission_denied"),
true);
103 $this->
ctrl->redirectByClass(ilDashboardGUI::class,
"");
115 $cmd = $this->
ctrl->getCmd();
116 $nextClass = $this->
ctrl->getNextClass();
118 switch ($nextClass) {
119 case strtolower(ilObjEmployeeTalkGUI::class):
121 $this->
ctrl->redirect($gui, ControlFlowCommand::INDEX);
123 case strtolower(ilFormPropertyDispatchGUI::class):
124 $this->
ctrl->setReturn($this, ControlFlowCommand::INDEX);
126 $table->executeCommand();
128 case strtolower(ilObjEmployeeTalkSeriesGUI::class):
130 $this->
ctrl->saveParameter($gui,
'template');
131 $this->
ctrl->saveParameter($gui,
'new_type');
132 $this->
ctrl->saveParameter($gui,
'usr_id');
133 $this->
ctrl->redirectByClass([
134 strtolower(ilDashboardGUI::class),
135 strtolower(ilMyStaffGUI::class),
136 strtolower(ilEmployeeTalkMyStaffListGUI::class),
137 strtolower(ilObjEmployeeTalkSeriesGUI::class)
142 case ControlFlowCommand::INDEX:
145 case ControlFlowCommand::APPLY_FILTER:
148 case ControlFlowCommand::RESET_FILTER:
152 $this->
ctrl->redirectByClass(ilDashboardGUI::class,
"");
161 $table->writeFilterToSession();
162 $table->resetOffset();
170 $table->resetOffset();
171 $table->resetFilter();
179 $userId = intval($this->usrId);
182 if ($this->talkAccess->hasPermissionToReadUnownedTalksOfUser($userId)) {
183 $talks = $this->
repository->findByEmployee($userId);
185 $talks = $this->
repository->findTalksBetweenEmployeeAndOwner($userId, $this->currentUser->getId());
187 $table->setTalkData($talks);
188 $this->
template->setContent($table->getHTML());
194 $gl->setAsDropDown(
true,
false);
196 $templates =
new CallbackFilterIterator(
198 function (array $item) {
201 $item[
'offline'] ===
"0" ||
202 $item[
'offline'] === null
207 foreach ($templates as $item) {
208 $type = $item[
"type"];
211 $icon = (
$path !=
"")
215 $this->
ctrl->setParameterByClass(
216 ilObjEmployeeTalkSeriesGUI::class,
220 $url = $this->
ctrl->getLinkTargetByClass(strtolower(ilObjEmployeeTalkSeriesGUI::class), ControlFlowCommand::CREATE);
232 $icon . $item[
"title"],
246 $adv->setListTitle($this->
language->txt(
"etal_add_new_item"));
248 $adv->setGroupedList($gl);
251 $this->
ui->mainTemplate()->setVariable(
"SELECT_OBJTYPE_REPOS", $adv->getHTML());
EmployeeTalkRepository $repository
static getObjCreationTooltipText(string $a_type)
Get object_creation tooltip tab text.
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $template
static _getAllReferences(int $id)
get all reference ids for object ID
Class ilEmployeeTalkMyStaffUserGUI.
static _hasUntrashedReference(int $obj_id)
checks whether an object has at least one reference that is not in trash
static _getObjectsByType(string $obj_type="", int $owner=null)
ilObjEmployeeTalkAccess $talkAccess
static img(string $a_src, ?string $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
Provides fluid interface to RBAC services.
Class ilObjEmployeeTalkGUI.
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...
RequestInterface $request
__construct(ilMyStaffAccess $access, ilCtrl $ctrl, ilLanguage $language, RequestInterface $request, ilGlobalTemplateInterface $template, ilTabsGUI $tabs, EmployeeTalkRepository $repository, UIServices $ui, ilObjEmployeeTalkAccess $employeeTalkAccess, ilObjUser $currentUser)
ilEmployeeTalkMyStaffUserGUI constructor.
Class ilObjEmployeeTalkGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...