ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
ilMailGUI Class Reference
+ Collaboration diagram for ilMailGUI:

Public Member Functions

 __construct ()
 
 executeCommand ()
 

Data Fields

const VIEWMODE_SESSION_KEY = 'mail_viewmode'
 

Private Member Functions

 setViewMode ()
 
 showHeader ()
 
 isMailDetailCommand ($cmd)
 
 showExplorer ()
 

Private Attributes

 $tpl = null
 
 $ctrl = null
 
 $lng = null
 
 $tabs_gui = null
 
 $umail = null
 
 $exp = null
 
 $output = null
 
 $mtree = null
 
 $forwardClass = null
 

Detailed Description

Definition at line 15 of file class.ilMailGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilMailGUI::__construct ( )

Definition at line 33 of file class.ilMailGUI.php.

References $_GET, $_POST, $ilCtrl, $ilErr, $ilUser, $lng, and $tpl.

34  {
35  global $tpl, $ilCtrl, $lng, $rbacsystem, $ilErr, $ilUser;
36 
37  $this->tpl = $tpl;
38  $this->ctrl = $ilCtrl;
39  $this->lng = $lng;
40 
41  if(isset($_POST['mobj_id']) && (int)$_POST['mobj_id'])
42  {
43  $_GET['mobj_id'] = $_POST['mobj_id'];
44  }
45  $_GET['mobj_id'] = (int)$_GET['mobj_id'];
46 
47  $this->ctrl->saveParameter($this, "mobj_id");
48  $this->lng->loadLanguageModule("mail");
49 
50  $this->umail = new ilMail($ilUser->getId());
51 
52  // CHECK HACK
53  if (!$rbacsystem->checkAccess('internal_mail', $this->umail->getMailObjectReferenceId()))
54  {
55  $ilErr->raiseError($this->lng->txt("permission_denied"), $ilErr->WARNING);
56  }
57  }
$_POST['username']
Definition: cron.php:12
$_GET["client_id"]
global $ilCtrl
Definition: ilias.php:18
Class Mail this class handles base functions for mail handling.
global $ilUser
Definition: imgupload.php:15

Member Function Documentation

◆ executeCommand()

ilMailGUI::executeCommand ( )

Definition at line 59 of file class.ilMailGUI.php.

References $_GET, $_POST, $_SESSION, $cmd, ilSession\get(), ilMailFormCall\getRecipients(), iljQueryUtil\initjQuery(), ilUtil\sendInfo(), ilSession\set(), ilMailFormCall\setRecipients(), showExplorer(), showHeader(), and ilMailFormCall\storeReferer().

60  {
61  if ($_GET["type"] == "search_res")
62  {
63  $this->ctrl->setParameterByClass("ilmailformgui", "cmd", "searchResults");
64  $this->ctrl->redirectByClass("ilmailformgui");
65  }
66 
67  if ($_GET["type"] == "attach")
68  {
70 
71  $this->ctrl->setParameterByClass("ilmailformgui", "cmd", "mailAttachment");
72  $this->ctrl->redirectByClass("ilmailformgui");
73  }
74 
75  if ($_GET["type"] == "new")
76  {
77  $_SESSION['rcp_to'] = $_GET['rcp_to'];
78  if(!strlen($_SESSION['rcp_to']) && ($recipients = ilMailFormCall::getRecipients()))
79  {
80  $_SESSION['rcp_to'] = implode(',', $recipients);
82  }
83  $_SESSION['rcp_cc'] = $_GET['rcp_cc'];
84  $_SESSION['rcp_bcc'] = $_GET['rcp_bcc'];
85 
87 
88  $this->ctrl->setParameterByClass("ilmailformgui", "cmd", "mailUser");
89  $this->ctrl->redirectByClass("ilmailformgui");
90  }
91 
92  if ($_GET["type"] == "reply")
93  {
94  $_SESSION['mail_id'] = $_GET['mail_id'];
95  $this->ctrl->setParameterByClass("ilmailformgui", "cmd", "replyMail");
96  $this->ctrl->redirectByClass("ilmailformgui");
97  }
98 
99  if ($_GET["type"] == "read")
100  {
101  $_SESSION['mail_id'] = $_GET['mail_id'];
102  $this->ctrl->setParameterByClass("ilmailfoldergui", "cmd", "showMail");
103  $this->ctrl->redirectByClass("ilmailfoldergui");
104  }
105 
106  if ($_GET["type"] == "deliverFile")
107  {
108  $_SESSION['mail_id'] = $_GET['mail_id'];
109  $_SESSION['filename'] = ($_POST["filename"] ? $_POST["filename"] : $_GET["filename"]);
110  $this->ctrl->setParameterByClass("ilmailfoldergui", "cmd", "deliverFile");
111  $this->ctrl->redirectByClass("ilmailfoldergui");
112  }
113 
114  if ($_GET["type"] == "message_sent")
115  {
116  ilUtil::sendInfo($this->lng->txt('mail_message_send'), true);
117  $this->ctrl->redirectByClass("ilmailfoldergui");
118  }
119 
120  if ($_GET["type"] == "role")
121  {
122  if (is_array($_POST['roles']))
123  {
124  $_SESSION['mail_roles'] = $_POST['roles'];
125  }
126  else if ($_GET["role"])
127  {
128  $_SESSION['mail_roles'] = array($_GET["role"]);
129  }
130 
132 
133  $this->ctrl->setParameterByClass("ilmailformgui", "cmd", "mailRole");
134  $this->ctrl->redirectByClass("ilmailformgui");
135  }
136 
137  if ($_GET["view"] == "my_courses")
138  {
139  $_SESSION['search_crs'] = $_GET['search_crs'];
140  $this->ctrl->setParameterByClass("ilmailformgui", "cmd", "searchCoursesTo");
141  $this->ctrl->redirectByClass("ilmailformgui");
142  }
143 
144  if (isset($_GET["viewmode"]))
145  {
146  ilSession::set(self::VIEWMODE_SESSION_KEY, $_GET["viewmode"]);
147  $this->ctrl->setCmd("setViewMode");
148  }
149 
150  $this->forwardClass = $this->ctrl->getNextClass($this);
151 
152  $this->showHeader();
153 
154  if('tree' == ilSession::get(self::VIEWMODE_SESSION_KEY) &&
155  $this->ctrl->getCmd() != "showExplorer")
156  {
157  $this->showExplorer();
158  }
159 
160  include_once "Services/jQuery/classes/class.iljQueryUtil.php";
162 
163  switch($this->forwardClass)
164  {
165  case 'ilmailformgui':
166  include_once 'Services/Mail/classes/class.ilMailFormGUI.php';
167 
168  $this->ctrl->forwardCommand(new ilMailFormGUI());
169  break;
170 
171  case 'ilmailaddressbookgui':
172  include_once 'Services/Contact/classes/class.ilMailAddressbookGUI.php';
173 
174  $this->ctrl->forwardCommand(new ilMailAddressbookGUI());
175  break;
176 
177  case 'ilmailoptionsgui':
178  include_once 'Services/Mail/classes/class.ilMailOptionsGUI.php';
179 
180  $this->ctrl->forwardCommand(new ilMailOptionsGUI());
181  break;
182 
183  case 'ilmailfoldergui':
184  include_once 'Services/Mail/classes/class.ilMailFolderGUI.php';
185  $this->ctrl->forwardCommand(new ilMailFolderGUI());
186  break;
187 
188  default:
189  if (!($cmd = $this->ctrl->getCmd()))
190  {
191  $cmd = "setViewMode";
192  }
193 
194  $this->$cmd();
195  break;
196 
197  }
198  return true;
199  }
< a tabindex="-1" style="border-style: none;" href="#" title="Refresh Image" onclick="document.getElementById('siimage').src = './securimage_show.php?sid=' + Math.random(); this.blur(); return false">< img src="./images/refresh.png" alt="Reload Image" height="32" width="32" onclick="this.blur()" align="bottom" border="0"/></a >< br/>< strong > Enter Code *if($_SERVER['REQUEST_METHOD']=='POST' &&@ $_POST['do']=='contact') $_SESSION['ctform']['success']
$_POST['username']
Definition: cron.php:12
$_GET["client_id"]
$cmd
Definition: sahs_server.php:35
static get($a_var)
Get a value.
static set($a_var, $a_val)
Set a value.
static storeReferer($request_params)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static initjQuery($a_tpl=null)
Init jQuery.
static setRecipients(array $recipients)
+ Here is the call graph for this function:

◆ isMailDetailCommand()

ilMailGUI::isMailDetailCommand (   $cmd)
private
Parameters
string$cmd
Returns
bool

Definition at line 303 of file class.ilMailGUI.php.

References $_GET, and $cmd.

Referenced by showHeader().

304  {
305  return in_array(strtolower($cmd), array('showmail')) && isset($_GET['mail_id']) && (int)$_GET['mail_id'];
306  }
$_GET["client_id"]
$cmd
Definition: sahs_server.php:35
+ Here is the caller graph for this function:

◆ setViewMode()

ilMailGUI::setViewMode ( )
private

Definition at line 201 of file class.ilMailGUI.php.

References $_GET.

202  {
203  if ($_GET["target"] == "")
204  {
205  $_GET["target"] = "ilmailfoldergui";
206  }
207 
208  if($_GET['type'] == 'redirect_to_read')
209  {
210  $this->ctrl->setParameterByClass('ilMailFolderGUI', 'mail_id', (int)$_GET['mail_id']);
211  $this->ctrl->redirectByClass('ilMailFolderGUI', 'showMail');
212  }
213  else if ($_GET["type"] == "add_subfolder")
214  {
215  $this->ctrl->redirectByClass($_GET["target"], "addSubFolder");
216  }
217  else if ($_GET["type"] == "enter_folderdata")
218  {
219  $this->ctrl->redirectByClass($_GET["target"], "enterFolderData");
220  }
221  else if ($_GET["type"] == "confirmdelete_folderdata")
222  {
223  $this->ctrl->redirectByClass($_GET["target"], "confirmDeleteFolder");
224  }
225  else
226  {
227  $this->ctrl->redirectByClass($_GET["target"]);
228  }
229  }
$_GET["client_id"]

◆ showExplorer()

ilMailGUI::showExplorer ( )
private

Definition at line 308 of file class.ilMailGUI.php.

References $exp, and $ilUser.

Referenced by executeCommand().

309  {
310  global $ilUser;
311 
312  require_once "Services/Mail/classes/class.ilMailExplorer.php";
313  $exp = new ilMailExplorer($this, "showExplorer", $ilUser->getId());
314  if (!$exp->handleCommand())
315  {
316  $this->tpl->setLeftNavContent($exp->getHTML());
317  }
318  }
Class Mail Explorer class for explorer view for mailboxes.
global $ilUser
Definition: imgupload.php:15
+ Here is the caller graph for this function:

◆ showHeader()

ilMailGUI::showHeader ( )
private

Definition at line 231 of file class.ilMailGUI.php.

References $_GET, ilSession\get(), ilUtil\getImagePath(), ilUtil\infoPanel(), and isMailDetailCommand().

Referenced by executeCommand().

232  {
233  global $ilMainMenu, $ilTabs, $ilHelp;
234 
235  $ilHelp->setScreenIdComponent("mail");
236 
237  $ilMainMenu->setActive("mail");
238 
239 // $this->tpl->getStandardTemplate();
240  $this->tpl->addBlockFile("CONTENT", "content", "tpl.adm_content.html");
241  $this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
242  $this->tpl->setTitleIcon(ilUtil::getImagePath("icon_mail_b.png"));
243 
244  // display infopanel if something happened
246 
247  $ilTabs->addTarget('fold', $this->ctrl->getLinkTargetByClass('ilmailfoldergui'));
248  $this->ctrl->setParameterByClass('ilmailformgui', 'type', 'new');
249  $ilTabs->addTarget('compose', $this->ctrl->getLinkTargetByClass('ilmailformgui'));
250  $this->ctrl->clearParametersByClass('ilmailformgui');
251  $ilTabs->addTarget('mail_addressbook', $this->ctrl->getLinkTargetByClass('ilmailaddressbookgui'));
252  $ilTabs->addTarget('options', $this->ctrl->getLinkTargetByClass('ilmailoptionsgui'));
253 
254  switch($this->forwardClass)
255  {
256  case 'ilmailformgui':
257  $ilTabs->setTabActive('compose');
258  break;
259 
260  case 'ilmailaddressbookgui':
261  $ilTabs->setTabActive('mail_addressbook');
262  break;
263 
264  case 'ilmailoptionsgui':
265  $ilTabs->setTabActive('options');
266  break;
267 
268  case 'ilmailfoldergui':
269  default:
270  $ilTabs->setTabActive('fold');
271  break;
272 
273  }
274  if(isset($_GET['message_sent'])) $ilTabs->setTabActive('fold');
275 
276  if('tree' != ilSession::get(self::VIEWMODE_SESSION_KEY))
277  {
278  $tree_state = 'tree';
279  }
280  else
281  {
282  $tree_state = 'flat';
283  }
284 
285  if($this->isMailDetailCommand($this->ctrl->getCmd()))
286  {
287  $this->ctrl->setParameter($this, 'mail_id', (int)$_GET['mail_id']);
288  $this->ctrl->setParameter($this, 'type', 'redirect_to_read');
289  }
290 
291  $this->ctrl->setParameter($this, 'viewmode', $tree_state);
292  $this->tpl->setTreeFlatIcon($this->ctrl->getLinkTarget($this), $tree_state);
293 
294  $this->ctrl->clearParameters($this);
295  $this->tpl->setCurrentBlock("tree_icons");
296  $this->tpl->parseCurrentBlock();
297  }
isMailDetailCommand($cmd)
$_GET["client_id"]
static get($a_var)
Get a value.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static infoPanel($a_keep=true)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $ctrl

ilMailGUI::$ctrl = null
private

Definition at line 23 of file class.ilMailGUI.php.

◆ $exp

ilMailGUI::$exp = null
private

Definition at line 28 of file class.ilMailGUI.php.

Referenced by showExplorer().

◆ $forwardClass

ilMailGUI::$forwardClass = null
private

Definition at line 31 of file class.ilMailGUI.php.

◆ $lng

ilMailGUI::$lng = null
private

Definition at line 24 of file class.ilMailGUI.php.

Referenced by __construct().

◆ $mtree

ilMailGUI::$mtree = null
private

Definition at line 30 of file class.ilMailGUI.php.

◆ $output

ilMailGUI::$output = null
private

Definition at line 29 of file class.ilMailGUI.php.

◆ $tabs_gui

ilMailGUI::$tabs_gui = null
private

Definition at line 25 of file class.ilMailGUI.php.

◆ $tpl

ilMailGUI::$tpl = null
private

Definition at line 22 of file class.ilMailGUI.php.

Referenced by __construct().

◆ $umail

ilMailGUI::$umail = null
private

Definition at line 27 of file class.ilMailGUI.php.

◆ VIEWMODE_SESSION_KEY


The documentation for this class was generated from the following file: