mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 04:53:18 +01:00
113 lines
3.8 KiB
PHP
113 lines
3.8 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare - E-Mail *
|
|
* http://www.egroupware.org *
|
|
* -------------------------------------------- *
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
* under the terms of the GNU General Public License as published by the *
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
$homedisplay = intval($GLOBALS['egw_info']['user']['preferences']['felamimail']['mainscreen_showmail']);
|
|
if($homedisplay > 0) {
|
|
$d1 = strtolower(substr(EGW_APP_INC,0,3));
|
|
if($d1 == 'htt' || $d1 == 'ftp' ) {
|
|
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
|
$GLOBALS['egw']->common->egw_exit();
|
|
}
|
|
unset($d1);
|
|
|
|
$tmp_app_inc = $GLOBALS['egw']->common->get_inc_dir('felamimail');
|
|
|
|
$GLOBALS['egw']->translation->add_app('felamimail');
|
|
|
|
$title = lang('felamimail');
|
|
|
|
$portalbox =& CreateObject('phpgwapi.listbox',
|
|
Array(
|
|
'title' => $title,
|
|
'primary' => $GLOBALS['egw_info']['theme']['navbar_bg'],
|
|
'secondary' => $GLOBALS['egw_info']['theme']['navbar_bg'],
|
|
'tertiary' => $GLOBALS['egw_info']['theme']['navbar_bg'],
|
|
'width' => '100%',
|
|
'outerborderwidth' => '0',
|
|
'header_background_image' => $GLOBALS['egw']->common->image('phpgwapi/templates/phpgw_website','bg_filler.gif')
|
|
)
|
|
);
|
|
|
|
$app_id = $GLOBALS['egw']->applications->name2id('felamimail');
|
|
$var = Array(
|
|
'up' => Array('url' => '/set_box.php', 'app' => $app_id),
|
|
'down' => Array('url' => '/set_box.php', 'app' => $app_id),
|
|
'close' => Array('url' => '/set_box.php', 'app' => $app_id),
|
|
'question' => Array('url' => '/set_box.php', 'app' => $app_id),
|
|
'edit' => Array('url' => '/set_box.php', 'app' => $app_id)
|
|
);
|
|
|
|
while(list($key,$value) = each($var)) {
|
|
$portalbox->set_controls($key,$value);
|
|
}
|
|
|
|
$portalbox->data = Array();
|
|
|
|
if($data) {
|
|
$portalbox->data = $data;
|
|
}
|
|
|
|
$this->displayCharset = $GLOBALS['egw']->translation->charset();
|
|
$this->bofelamimail =& CreateObject('felamimail.bofelamimail',$this->displayCharset);
|
|
|
|
if(!$this->bofelamimail->openConnection()) {
|
|
$extra_data = lang("can't connect to INBOX!!");
|
|
} else {
|
|
$folderList = $this->bofelamimail->getFolderObjects(true, true);
|
|
#_debug_array($folderList);
|
|
$extra_data = '<table border="0" cellspacing="0" cellpading="0" width="100%">
|
|
<tr class="th">
|
|
<td>
|
|
<b>'.lang('foldername').'</b>
|
|
</td>
|
|
<td>
|
|
<b>'.lang('total').'</b>
|
|
</td>
|
|
<td>
|
|
<b>'.lang('unseen').'</b>
|
|
</td>
|
|
<tr>';
|
|
foreach($folderList as $key => $value) {
|
|
#_debug_array($value);
|
|
if(is_object($value->counter)) {
|
|
$messages = $value->counter->messages;
|
|
$unseen = $value->counter->unseen;
|
|
$recent = $value->counter->recent;
|
|
}
|
|
|
|
if($recent > 0) {
|
|
$newMessages = "$unseen($recent)";
|
|
} else {
|
|
$newMessages = "$unseen";
|
|
}
|
|
|
|
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uifelamimail.changeFolder',
|
|
'mailbox' => urlencode($key)
|
|
);
|
|
$folderLink = $GLOBALS['egw']->link('/index.php',$linkData);
|
|
|
|
$extra_data .= "<tr><td><a href='$folderLink'>$value->displayName</a></td><td>$messages</td><td>$newMessages</td></tr>";
|
|
}
|
|
$extra_data .= '</table>';
|
|
}
|
|
|
|
// output the portalbox and below it (1) the folders listbox (if applicable) and (2) Compose New mail link
|
|
echo "\r\n".'<!-- start Mailbox info -->'."\r\n"
|
|
.$portalbox->draw($extra_data)
|
|
.'<!-- ends Mailox info -->'."\r\n";
|
|
}
|
|
?>
|