1 <?php declare(strict_types=1);
49 $this->tpl = $DIC->ui()->mainTemplate();
50 $this->ctrl = $DIC->ctrl();
51 $this->lng = $DIC->language();
52 $this->
user = $DIC->user();
53 $this->httpRequest = $DIC->http()->request();
55 $this->lng->loadLanguageModule(
'mail');
58 $this->umail =
new ilMail($this->
user->getId());
59 if (!$DIC->rbac()->system()->checkAccess(
'internal_mail', $this->umail->getMailObjectReferenceId())) {
60 $DIC[
'ilErr']->raiseError($this->lng->txt(
'permission_denied'), $DIC[
'ilErr']->WARNING);
66 $toolContext = $DIC->globalScreen()
72 if (
false === $additionalDataExists) {
82 $folderId = (int) ($this->httpRequest->getParsedBody()[
'mobj_id'] ?? 0);
83 if (0 === $folderId) {
84 $folderId = (int) ($this->httpRequest->getQueryParams()[
'mobj_id'] ?? 0);
86 if (0 === $folderId || !$this->mbox->isOwnedFolder($folderId)) {
87 $folderId = $this->mbox->getInboxFolder();
89 $this->currentFolderId = (int) $folderId;
97 $type = $this->httpRequest->getQueryParams()[
'type'] ??
'';
98 $mailId = (int) ($this->httpRequest->getQueryParams()[
'mail_id'] ?? 0);
100 $this->ctrl->setParameterByClass(
'ilmailformgui',
'mobj_id', $this->currentFolderId);
101 $this->ctrl->setParameterByClass(
'ilmailfoldergui',
'mobj_id', $this->currentFolderId);
103 if (
'search_res' ===
$type) {
105 $this->ctrl->redirectByClass(
'ilmailformgui',
'searchResults');
106 } elseif (
'attach' ===
$type) {
108 $this->ctrl->redirectByClass(
'ilmailformgui',
'mailAttachment');
109 } elseif (
'new' ===
$type) {
110 $to = $this->httpRequest->getQueryParams()[
'rcp_to'] ??
'';
117 $cc = $this->httpRequest->getQueryParams()[
'rcp_cc'] ??
'';
118 $bcc = $this->httpRequest->getQueryParams()[
'rcp_bcc'] ??
'';
123 $this->ctrl->redirectByClass(
'ilmailformgui',
'mailUser');
124 } elseif (
'reply' ===
$type) {
126 $this->ctrl->redirectByClass(
'ilmailformgui',
'replyMail');
127 } elseif (
'read' ===
$type) {
129 $this->ctrl->redirectByClass(
'ilmailfoldergui',
'showMail');
130 } elseif (
'deliverFile' ===
$type) {
134 if (isset($this->httpRequest->getParsedBody()[
'filename'])) {
135 $fileName = $this->httpRequest->getParsedBody()[
'filename'];
136 } elseif (isset($this->httpRequest->getQueryParams()[
'filename'])) {
137 $fileName = $this->httpRequest->getQueryParams()[
'filename'];
140 $this->ctrl->redirectByClass(
'ilmailfoldergui',
'deliverFile');
141 } elseif (
'message_sent' ===
$type) {
142 ilUtil::sendSuccess($this->lng->txt(
'mail_message_send'),
true);
143 $this->ctrl->redirectByClass(
'ilmailfoldergui');
144 } elseif (
'role' ===
$type) {
145 $roles = $this->httpRequest->getParsedBody()[
'roles'] ?? [];
146 if (is_array($roles) && count($roles) > 0) {
148 } elseif (isset($this->httpRequest->getQueryParams()[
'role'])) {
149 ilSession::set(
'mail_roles', [$this->httpRequest->getQueryParams()[
'role']]);
153 $this->ctrl->redirectByClass(
'ilmailformgui',
'mailRole');
156 if (
'my_courses' === $this->httpRequest->getQueryParams()[
'view']) {
158 $this->ctrl->redirectByClass(
'ilmailformgui',
'searchCoursesTo');
161 if (isset($this->httpRequest->getQueryParams()[
'viewmode'])) {
162 $this->ctrl->setCmd(
'setViewMode');
165 $this->forwardClass = (string) $this->ctrl->getNextClass($this);
168 switch (strtolower($this->forwardClass)) {
169 case 'ilmailformgui':
174 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
178 case 'ilmailoptionsgui':
179 $this->tpl->setTitle($this->lng->txt(
'mail'));
183 case 'ilmailfoldergui':
188 if (!($cmd = $this->ctrl->getCmd()) || !method_exists($this, $cmd)) {
189 $cmd =
'setViewMode';
202 $targetClass = $this->httpRequest->getQueryParams()[
'target'] ??
'ilmailfoldergui';
203 $type = $this->httpRequest->getQueryParams()[
'type'] ??
'';
204 $mailId = (int) ($this->httpRequest->getQueryParams()[
'mail_id'] ?? 0);
206 $this->ctrl->setParameterByClass($targetClass,
'mobj_id', $this->currentFolderId);
208 if (
'redirect_to_read' ===
$type) {
209 $this->ctrl->setParameterByClass(
214 $this->ctrl->setParameterByClass(
'ilmailfoldergui',
'mobj_id', $this->currentFolderId);
215 $this->ctrl->redirectByClass(
'ilMailFolderGUI',
'showMail');
216 } elseif (
'add_subfolder' ===
$type) {
217 $this->ctrl->redirectByClass($targetClass,
'addSubFolder');
218 } elseif (
'enter_folderdata' ===
$type) {
219 $this->ctrl->redirectByClass($targetClass,
'enterFolderData');
220 } elseif (
'confirmdelete_folderdata' ===
$type) {
221 $this->ctrl->redirectByClass($targetClass,
'confirmDeleteFolder');
223 $this->ctrl->redirectByClass($targetClass);
234 $DIC[
'ilHelp']->setScreenIdComponent(
"mail");
235 $DIC[
'ilMainMenu']->setActive(
"mail");
237 $this->tpl->loadStandardTemplate();
242 $this->ctrl->setParameterByClass(
'ilmailfoldergui',
'mobj_id', $this->currentFolderId);
243 $DIC->tabs()->addTarget(
'fold', $this->ctrl->getLinkTargetByClass(
'ilmailfoldergui'));
244 $this->ctrl->clearParametersByClass(
'ilmailformgui');
246 $this->ctrl->setParameterByClass(
'ilmailformgui',
'type',
'new');
247 $this->ctrl->setParameterByClass(
'ilmailformgui',
'mobj_id', $this->currentFolderId);
248 $DIC->tabs()->addTarget(
'compose', $this->ctrl->getLinkTargetByClass(
'ilmailformgui'));
249 $this->ctrl->clearParametersByClass(
'ilmailformgui');
251 $this->ctrl->setParameterByClass(
'ilcontactgui',
'mobj_id', $this->currentFolderId);
252 $DIC->tabs()->addTarget(
'mail_addressbook', $this->ctrl->getLinkTargetByClass(
'ilcontactgui'));
253 $this->ctrl->clearParametersByClass(
'ilcontactgui');
255 if ($DIC->settings()->get(
'show_mail_settings')) {
256 $this->ctrl->setParameterByClass(
'ilmailoptionsgui',
'mobj_id', $this->currentFolderId);
257 $DIC->tabs()->addTarget(
'options', $this->ctrl->getLinkTargetByClass(
'ilmailoptionsgui'));
258 $this->ctrl->clearParametersByClass(
'ilmailoptionsgui');
261 switch ($this->forwardClass) {
262 case 'ilmailformgui':
263 $DIC->tabs()->setTabActive(
'compose');
267 $DIC->tabs()->setTabActive(
'mail_addressbook');
270 case 'ilmailoptionsgui':
271 $DIC->tabs()->setTabActive(
'options');
274 case 'ilmailfoldergui':
276 $DIC->tabs()->setTabActive(
'fold');
280 if (isset($this->httpRequest->getQueryParams()[
'message_sent'])) {
281 $DIC->tabs()->setTabActive(
'fold');
static get($a_var)
Get a value.
static set($a_var, $a_val)
Set a value.
toggleExplorerNodeState()
Toggle explorer tree node.
Class Mail Explorer class for explorer view for mailboxes.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
Mail Box class Base class for creating and handling mail boxes.
static infoPanel($a_keep=true)
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
__construct()
ilMailGUI constructor.
toggleExplorerNodeState()
Should be called by an ilCtrl-enabled command class if a tree node toggle action should be processed...