19 declare(strict_types=1);
47 $this->tpl = $DIC->ui()->mainTemplate();
48 $this->
ctrl = $DIC->ctrl();
49 $this->
lng = $DIC->language();
50 $this->
user = $DIC->user();
51 $this->
http = $DIC->http();
54 $this->
lng->loadLanguageModule(
'mail');
57 $this->umail =
new ilMail($this->
user->getId());
59 !$DIC->rbac()->system()->checkAccess(
61 $this->umail->getMailObjectReferenceId()
64 $DIC[
'ilErr']->raiseError($this->
lng->txt(
'permission_denied'), $DIC[
'ilErr']->WARNING);
69 $toolContext = $DIC->globalScreen()
74 $additionalDataExists = $toolContext->getAdditionalData()->exists(
75 MailGlobalScreenToolProvider::SHOW_MAIL_FOLDERS_TOOL
77 if (
false === $additionalDataExists) {
78 $toolContext->addAdditionalData(MailGlobalScreenToolProvider::SHOW_MAIL_FOLDERS_TOOL,
true);
84 if ($this->
http->wrapper()->post()->has(
'mobj_id')) {
85 $folderId = $this->
http->wrapper()->post()->retrieve(
'mobj_id', $this->
refinery->kindlyTo()->int());
86 } elseif ($this->
http->wrapper()->query()->has(
'mobj_id')) {
87 $folderId = $this->
http->wrapper()->query()->retrieve(
'mobj_id', $this->
refinery->kindlyTo()->int());
89 $folderId = $this->
refinery->byTrying([
91 $this->
refinery->always($this->currentFolderId),
94 if (0 === $folderId || !$this->mbox->isOwnedFolder($folderId)) {
95 $folderId = $this->mbox->getInboxFolder();
97 $this->currentFolderId = $folderId;
103 if ($this->
http->wrapper()->query()->has(
'type')) {
104 $type = $this->
http->wrapper()->query()->retrieve(
'type', $this->
refinery->kindlyTo()->string());
107 if ($this->
http->wrapper()->query()->has(
'mail_id')) {
108 $mailId = $this->
http->wrapper()->query()->retrieve(
'mail_id', $this->
refinery->kindlyTo()->int());
111 $this->
ctrl->setParameterByClass(ilMailFormGUI::class,
'mobj_id', $this->currentFolderId);
112 $this->
ctrl->setParameterByClass(ilMailFolderGUI::class,
'mobj_id', $this->currentFolderId);
116 $this->
ctrl->redirectByClass(ilMailFormGUI::class,
'searchResults');
119 $this->
ctrl->redirectByClass(ilMailFormGUI::class,
'mailAttachment');
121 foreach ([
'to',
'cc',
'bcc'] as $reciepient_type) {
122 $key =
'rcp_' . $reciepient_type;
125 if ($this->
http->wrapper()->query()->has(
$key)) {
126 $recipients = $this->
http->wrapper()->query()->retrieve(
128 $this->
refinery->kindlyTo()->string()
141 $this->
ctrl->redirectByClass(ilMailFormGUI::class,
'mailUser');
143 $this->
ctrl->setParameterByClass(ilMailFormGUI::class,
'mail_id', $mailId);
144 $this->
ctrl->redirectByClass(ilMailFormGUI::class,
'replyMail');
145 } elseif (
'read' ===
$type) {
146 $this->
ctrl->setParameterByClass(ilMailFolderGUI::class,
'mail_id', $mailId);
147 $this->
ctrl->redirectByClass(ilMailFolderGUI::class,
'showMail');
148 } elseif (
'deliverFile' ===
$type) {
150 if ($this->
http->wrapper()->post()->has(
'filename')) {
151 $fileName = $this->
http->wrapper()->post()->retrieve(
153 $this->
refinery->kindlyTo()->string()
155 } elseif ($this->
http->wrapper()->query()->has(
'filename')) {
156 $fileName = $this->
http->wrapper()->query()->retrieve(
158 $this->
refinery->kindlyTo()->string()
163 $this->
ctrl->setParameterByClass(ilMailFolderGUI::class,
'mail_id', $mailId);
164 $this->
ctrl->redirectByClass(ilMailFolderGUI::class,
'deliverFile');
165 } elseif (
'message_sent' ===
$type) {
166 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_message_send'),
true);
167 $this->
ctrl->redirectByClass(ilMailFolderGUI::class);
170 if ($this->
http->wrapper()->post()->has(
'roles')) {
171 $roles = $this->
http->wrapper()->post()->retrieve(
175 } elseif ($this->
http->wrapper()->query()->has(
'role')) {
176 $roles = [$this->
http->wrapper()->query()->retrieve(
'role', $this->
refinery->kindlyTo()->string())];
184 $this->
ctrl->redirectByClass(ilMailFormGUI::class,
'mailRole');
188 if ($this->
http->wrapper()->query()->has(
'view')) {
189 $view = $this->
http->wrapper()->query()->retrieve(
'view', $this->
refinery->kindlyTo()->string());
191 if (
'my_courses' === $view) {
193 if ($this->
http->wrapper()->query()->has(
'search_crs')) {
195 $this->
http->wrapper()->query()->retrieve(
'search_crs', $this->
refinery->kindlyTo()->string())
198 $this->
ctrl->setParameter($this,
'search_crs', $search_crs);
199 $this->
ctrl->redirectByClass(ilMailFormGUI::class,
'searchCoursesTo');
202 if ($this->
http->wrapper()->query()->has(
'viewmode')) {
203 $this->
ctrl->setCmd(
'setViewMode');
206 $this->forwardClass = (string) $this->
ctrl->getNextClass($this);
209 switch (strtolower($this->forwardClass)) {
210 case strtolower(ilMailFormGUI::class):
214 case strtolower(ilContactGUI::class):
215 $this->tpl->setTitle($this->
lng->txt(
'mail_addressbook'));
219 case strtolower(ilMailOptionsGUI::class):
220 $this->tpl->setTitle($this->
lng->txt(
'mail'));
224 case strtolower(ilMailFolderGUI::class):
229 if (!($cmd = $this->
ctrl->getCmd()) || !method_exists($this, $cmd)) {
230 $cmd =
'setViewMode';
240 $targetClass = ilMailFolderGUI::class;
241 if ($this->
http->wrapper()->query()->has(
'target')) {
242 $targetClass = $this->
http->wrapper()->query()->retrieve(
244 $this->
refinery->kindlyTo()->string()
248 if ($this->
http->wrapper()->query()->has(
'type')) {
249 $type = $this->
http->wrapper()->query()->retrieve(
'type', $this->
refinery->kindlyTo()->string());
252 if ($this->
http->wrapper()->query()->has(
'mail_id')) {
253 $mailId = $this->
http->wrapper()->query()->retrieve(
'mail_id', $this->
refinery->kindlyTo()->int());
256 $this->
ctrl->setParameterByClass($targetClass,
'mobj_id', $this->currentFolderId);
258 if (
'redirect_to_read' ===
$type) {
259 $this->
ctrl->setParameterByClass(
260 ilMailFolderGUI::class,
264 $this->
ctrl->setParameterByClass(
265 ilMailFolderGUI::class,
267 $this->currentFolderId
269 $this->
ctrl->redirectByClass(ilMailFolderGUI::class,
'showMail');
270 } elseif (
'add_subfolder' ===
$type) {
271 $this->
ctrl->redirectByClass($targetClass,
'addSubFolder');
272 } elseif (
'enter_folderdata' ===
$type) {
273 $this->
ctrl->redirectByClass($targetClass,
'enterFolderData');
274 } elseif (
'confirmdelete_folderdata' ===
$type) {
275 $this->
ctrl->redirectByClass($targetClass,
'confirmDeleteFolder');
277 $this->
ctrl->redirectByClass($targetClass);
285 $DIC[
'ilHelp']->setScreenIdComponent(
"mail");
287 $this->tpl->loadStandardTemplate();
290 $this->
ctrl->setParameterByClass(ilMailFolderGUI::class,
'mobj_id', $this->currentFolderId);
291 $DIC->tabs()->addTarget(
'fold', $this->
ctrl->getLinkTargetByClass(ilMailFolderGUI::class));
292 $this->
ctrl->clearParametersByClass(ilMailFormGUI::class);
295 $this->
ctrl->setParameterByClass(ilMailFormGUI::class,
'mobj_id', $this->currentFolderId);
296 $DIC->tabs()->addTarget(
'compose', $this->
ctrl->getLinkTargetByClass(ilMailFormGUI::class));
297 $this->
ctrl->clearParametersByClass(ilMailFormGUI::class);
299 $this->
ctrl->setParameterByClass(ilContactGUI::class,
'mobj_id', $this->currentFolderId);
300 $DIC->tabs()->addTarget(
302 $this->
ctrl->getLinkTargetByClass(ilContactGUI::class)
304 $this->
ctrl->clearParametersByClass(ilContactGUI::class);
306 if ($DIC->settings()->get(
'show_mail_settings',
'0')) {
307 $this->
ctrl->setParameterByClass(
308 ilMailOptionsGUI::class,
310 $this->currentFolderId
312 $DIC->tabs()->addTarget(
314 $this->
ctrl->getLinkTargetByClass(ilMailOptionsGUI::class)
316 $this->
ctrl->clearParametersByClass(ilMailOptionsGUI::class);
319 switch (strtolower($this->forwardClass)) {
320 case strtolower(ilMailFormGUI::class):
321 $DIC->tabs()->setTabActive(
'compose');
324 case strtolower(ilContactGUI::class):
325 $DIC->tabs()->setTabActive(
'mail_addressbook');
328 case strtolower(ilMailOptionsGUI::class):
329 $DIC->tabs()->setTabActive(
'options');
332 case strtolower(ilMailFolderGUI::class):
334 $DIC->tabs()->setTabActive(
'fold');
338 if ($this->
http->wrapper()->query()->has(
'message_sent')) {
339 $DIC->tabs()->setTabActive(
'fold');
346 $exp->toggleExplorerNodeState();
Interface GlobalHttpState.
static get(string $a_var)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
toggleExplorerNodeState()
Interface ilCtrlBaseClassInterface describes ilCtrl base classes.
static http()
Fetches the global http state from ILIAS.
Mail Box class Base class for creating and handling mail boxes.
static set(string $a_var, $a_val)
Set a value.
ilGlobalTemplateInterface $tpl