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 foreach ([
'to',
'cc',
'bcc'] as $reciepient_type) {
111 $key =
'rcp_' . $reciepient_type;
113 $recipients = $this->httpRequest->getQueryParams()[$key] ??
'';
125 $this->ctrl->redirectByClass(
'ilmailformgui',
'mailUser');
126 } elseif (
'reply' ===
$type) {
128 $this->ctrl->redirectByClass(
'ilmailformgui',
'replyMail');
129 } elseif (
'read' ===
$type) {
131 $this->ctrl->redirectByClass(
'ilmailfoldergui',
'showMail');
132 } elseif (
'deliverFile' ===
$type) {
136 if (isset($this->httpRequest->getParsedBody()[
'filename'])) {
137 $fileName = $this->httpRequest->getParsedBody()[
'filename'];
138 } elseif (isset($this->httpRequest->getQueryParams()[
'filename'])) {
139 $fileName = $this->httpRequest->getQueryParams()[
'filename'];
142 $this->ctrl->redirectByClass(
'ilmailfoldergui',
'deliverFile');
143 } elseif (
'message_sent' ===
$type) {
144 ilUtil::sendSuccess($this->lng->txt(
'mail_message_send'),
true);
145 $this->ctrl->redirectByClass(
'ilmailfoldergui');
146 } elseif (
'role' ===
$type) {
147 $roles = $this->httpRequest->getParsedBody()[
'roles'] ?? [];
148 if (is_array($roles) && count($roles) > 0) {
150 } elseif (isset($this->httpRequest->getQueryParams()[
'role'])) {
151 ilSession::set(
'mail_roles', [$this->httpRequest->getQueryParams()[
'role']]);
155 $this->ctrl->redirectByClass(
'ilmailformgui',
'mailRole');
158 $view = (string) ($this->httpRequest->getQueryParams()[
'view'] ??
'');
159 if (
'my_courses' === $view) {
161 $this->ctrl->redirectByClass(
'ilmailformgui',
'searchCoursesTo');
164 if (isset($this->httpRequest->getQueryParams()[
'viewmode'])) {
165 $this->ctrl->setCmd(
'setViewMode');
168 $this->forwardClass = (string) $this->ctrl->getNextClass($this);
171 switch (strtolower($this->forwardClass)) {
172 case 'ilmailformgui':
177 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
181 case 'ilmailoptionsgui':
182 $this->tpl->setTitle($this->lng->txt(
'mail'));
186 case 'ilmailfoldergui':
191 if (!($cmd = $this->ctrl->getCmd()) || !method_exists($this, $cmd)) {
192 $cmd =
'setViewMode';
205 $targetClass = $this->httpRequest->getQueryParams()[
'target'] ??
'ilmailfoldergui';
206 $type = $this->httpRequest->getQueryParams()[
'type'] ??
'';
207 $mailId = (int) ($this->httpRequest->getQueryParams()[
'mail_id'] ?? 0);
209 $this->ctrl->setParameterByClass($targetClass,
'mobj_id', $this->currentFolderId);
211 if (
'redirect_to_read' ===
$type) {
212 $this->ctrl->setParameterByClass(
217 $this->ctrl->setParameterByClass(
'ilmailfoldergui',
'mobj_id', $this->currentFolderId);
218 $this->ctrl->redirectByClass(
'ilMailFolderGUI',
'showMail');
219 } elseif (
'add_subfolder' ===
$type) {
220 $this->ctrl->redirectByClass($targetClass,
'addSubFolder');
221 } elseif (
'enter_folderdata' ===
$type) {
222 $this->ctrl->redirectByClass($targetClass,
'enterFolderData');
223 } elseif (
'confirmdelete_folderdata' ===
$type) {
224 $this->ctrl->redirectByClass($targetClass,
'confirmDeleteFolder');
226 $this->ctrl->redirectByClass($targetClass);
237 $DIC[
'ilHelp']->setScreenIdComponent(
"mail");
238 $DIC[
'ilMainMenu']->setActive(
"mail");
240 $this->tpl->loadStandardTemplate();
245 $this->ctrl->setParameterByClass(
'ilmailfoldergui',
'mobj_id', $this->currentFolderId);
246 $DIC->tabs()->addTarget(
'fold', $this->ctrl->getLinkTargetByClass(
'ilmailfoldergui'));
247 $this->ctrl->clearParametersByClass(
'ilmailformgui');
249 $this->ctrl->setParameterByClass(
'ilmailformgui',
'type',
'new');
250 $this->ctrl->setParameterByClass(
'ilmailformgui',
'mobj_id', $this->currentFolderId);
251 $DIC->tabs()->addTarget(
'compose', $this->ctrl->getLinkTargetByClass(
'ilmailformgui'));
252 $this->ctrl->clearParametersByClass(
'ilmailformgui');
254 $this->ctrl->setParameterByClass(
'ilcontactgui',
'mobj_id', $this->currentFolderId);
255 $DIC->tabs()->addTarget(
'mail_addressbook', $this->ctrl->getLinkTargetByClass(
'ilcontactgui'));
256 $this->ctrl->clearParametersByClass(
'ilcontactgui');
258 if ($DIC->settings()->get(
'show_mail_settings')) {
259 $this->ctrl->setParameterByClass(
'ilmailoptionsgui',
'mobj_id', $this->currentFolderId);
260 $DIC->tabs()->addTarget(
'options', $this->ctrl->getLinkTargetByClass(
'ilmailoptionsgui'));
261 $this->ctrl->clearParametersByClass(
'ilmailoptionsgui');
264 switch ($this->forwardClass) {
265 case 'ilmailformgui':
266 $DIC->tabs()->setTabActive(
'compose');
270 $DIC->tabs()->setTabActive(
'mail_addressbook');
273 case 'ilmailoptionsgui':
274 $DIC->tabs()->setTabActive(
'options');
277 case 'ilmailfoldergui':
279 $DIC->tabs()->setTabActive(
'fold');
283 if (isset($this->httpRequest->getQueryParams()[
'message_sent'])) {
284 $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...