mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 13:33:19 +01:00
124 lines
3.7 KiB
PHP
124 lines
3.7 KiB
PHP
<?php
|
|
{
|
|
/**************************************************************************\
|
|
* eGroupWare - Calendar's Sidebox-Menu for idots-template *
|
|
* http://www.egroupware.org *
|
|
* Written by Pim Snel <pim@lingewoud.nl> *
|
|
* -------------------------------------------- *
|
|
* 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$ */
|
|
|
|
/*
|
|
This hookfile is for generating an app-specific side menu used in the idots
|
|
template set.
|
|
|
|
$menu_title speaks for itself
|
|
$file is the array with link to app functions
|
|
|
|
display_sidebox can be called as much as you like
|
|
*/
|
|
|
|
$menu_title = $GLOBALS['egw_info']['apps'][$appname]['title'] . ' '. lang('Menu');
|
|
$preferences = ExecMethod('felamimail.bopreferences.getPreferences');
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uicompose.compose'
|
|
);
|
|
|
|
$file = Array(
|
|
'Compose' => "javascript:openComposeWindow('".$GLOBALS['egw']->link('/index.php',$linkData)."');",
|
|
);
|
|
|
|
if($preferences->preferences['deleteOptions'] == 'move_to_trash')
|
|
{
|
|
$file += Array(
|
|
'_NewLine_' => '', // give a newline
|
|
'empty trash' => "javascript:emptyTrash();",
|
|
);
|
|
}
|
|
|
|
if($preferences->preferences['deleteOptions'] == 'mark_as_deleted')
|
|
{
|
|
$file += Array(
|
|
'_NewLine_' => '', // give a newline
|
|
'compress folder' => "javascript:compressFolder();",
|
|
);
|
|
}
|
|
|
|
display_sidebox($appname,$menu_title,$file);
|
|
|
|
if ($GLOBALS['egw_info']['user']['apps']['preferences'])
|
|
{
|
|
#$mailPreferences = ExecMethod('felamimail.bopreferences.getPreferences');
|
|
$menu_title = lang('Preferences');
|
|
$file = array(
|
|
'Preferences' => $GLOBALS['egw']->link('/index.php','menuaction=preferences.uisettings.index&appname=felamimail'),
|
|
);
|
|
|
|
if($preferences->userDefinedAccounts)
|
|
{
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.editAccountData',
|
|
);
|
|
$file['Manage EMailaccounts'] = $GLOBALS['egw']->link('/index.php',$linkData);
|
|
}
|
|
|
|
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.listSignatures',
|
|
);
|
|
$file['Manage Signatures'] = $GLOBALS['egw']->link('/index.php',$linkData);
|
|
|
|
$file['Manage Folders'] = $GLOBALS['egw']->link('/index.php','menuaction=felamimail.uipreferences.listFolder');
|
|
|
|
$icServer = $preferences->getIncomingServer(0);
|
|
if(is_a($icServer, 'defaultimap')) {
|
|
if($icServer->enableSieve)
|
|
{
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uisieve.listRules',
|
|
);
|
|
$file['filter rules'] = $GLOBALS['egw']->link('/index.php',$linkData);
|
|
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uisieve.editVacation',
|
|
);
|
|
$file['vacation notice'] = $GLOBALS['egw']->link('/index.php',$linkData);
|
|
}
|
|
}
|
|
|
|
$ogServer = $preferences->getOutgoingServer(0);
|
|
if(is_a($ogServer, 'defaultsmtp')) {
|
|
if($ogServer->editForwardingAddress)
|
|
{
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.editForwardingAddress',
|
|
);
|
|
$file['Forwarding'] = $GLOBALS['egw']->link('/index.php',$linkData);
|
|
}
|
|
}
|
|
|
|
display_sidebox($appname,$menu_title,$file);
|
|
}
|
|
|
|
/* if ($GLOBALS['egw_info']['user']['apps']['admin'])
|
|
{
|
|
$menu_title = lang('Administration');
|
|
$file = Array(
|
|
'Configuration' => $GLOBALS['egw']->link('/index.php','menuaction=felamimail.uifelamimail.hookAdmin')
|
|
);
|
|
display_sidebox($appname,$menu_title,$file);
|
|
} */
|
|
}
|
|
?>
|