mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
36 lines
1.6 KiB
PHP
36 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* eGroupWare - Notifications
|
|
* serves the hook "after_navbar" to create the notificationwindow
|
|
*
|
|
* @abstract notificatonwindow is an empty and non displayed 1px div which gets rezised
|
|
* and populated if a notification is about to be displayed.
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package notifications
|
|
* @subpackage ajaxpoup
|
|
* @link http://www.egroupware.org
|
|
* @author Cornelius Weiss <nelius@cwtech.de>
|
|
* @version $Id$
|
|
*/
|
|
$notification_config = config::read('notifications');
|
|
if ($notification_config['popup_enable'] && $GLOBALS['egw_info']['user']['apps']['notifications'])
|
|
{
|
|
$GLOBALS['egw']->translation->add_app('notifications');
|
|
$popup_poll_interval = empty($notification_config['popup_poll_interval']) ? 60 : $notification_config['popup_poll_interval'];
|
|
echo '<script src="'. $GLOBALS['egw_info']['server']['webserver_url']. '/notifications/js/notificationajaxpopup.js?'.
|
|
filemtime(EGW_SERVER_ROOT.'/notifications/js/notificationajaxpopup.js'). '" type="text/javascript"></script>';
|
|
echo '<script type="text/javascript">egwpopup_init("'.$popup_poll_interval.'");</script>';
|
|
echo '
|
|
<div id="egwpopup" style="display: none; z-index: 999;">
|
|
<div id="egwpopup_header">'.lang('Notification'). '<span style="float:right;">'.
|
|
html::submit_button('egwpopup_close_button', 'X', 'egwpopup_button_close();',true,'', 'close.button') .
|
|
'</span></div>
|
|
<div id="egwpopup_message"></div>
|
|
<div id="egwpopup_footer">
|
|
<input id="egwpopup_ok_button" type="submit" value="'. lang('ok'). '" onClick="egwpopup_button_ok();">
|
|
</div>
|
|
</div>
|
|
';
|
|
}
|
|
unset($notification_config);
|