2006-09-07 09:04:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eGroupWare - Notifications
|
|
|
|
* serves the hook "after_navbar" to create the notificationwindow
|
2008-08-15 11:38:58 +02:00
|
|
|
*
|
|
|
|
* @abstract notificatonwindow is an empty and non displayed 1px div which gets rezised
|
2006-09-07 09:04:15 +02:00
|
|
|
* 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>
|
2006-09-25 12:20:46 +02:00
|
|
|
* @version $Id$
|
2006-09-07 09:04:15 +02:00
|
|
|
*/
|
2011-06-15 12:05:11 +02:00
|
|
|
if ($GLOBALS['egw_info']['user']['apps']['notifications'])
|
2009-08-25 13:22:04 +02:00
|
|
|
{
|
2013-07-22 15:29:20 +02:00
|
|
|
$notification_config = config::read('notifications');
|
|
|
|
translation::add_app('notifications');
|
2009-04-06 23:46:11 +02:00
|
|
|
$popup_poll_interval = empty($notification_config['popup_poll_interval']) ? 60 : $notification_config['popup_poll_interval'];
|
2009-03-24 10:33:28 +01:00
|
|
|
echo '<script src="'. $GLOBALS['egw_info']['server']['webserver_url']. '/notifications/js/notificationajaxpopup.js?'.
|
2013-07-22 15:29:20 +02:00
|
|
|
filemtime(EGW_SERVER_ROOT.'/notifications/js/notificationajaxpopup.js'). '" type="text/javascript" id="notifications_script_id" data-poll-interval="'.$popup_poll_interval.'"></script>';
|
2006-09-07 09:04:15 +02:00
|
|
|
echo '
|
2009-02-23 21:45:31 +01:00
|
|
|
<div id="egwpopup" style="display: none; z-index: 999;">
|
2011-04-13 19:51:02 +02:00
|
|
|
<div id="egwpopup_header">'.lang('Notification'). '<span style="float:right;">'.
|
2013-07-22 15:29:20 +02:00
|
|
|
html::submit_button('egwpopup_close_button', 'X', '', true, 'id="egwpopup_close_button"', 'close.button') .
|
2011-04-13 19:51:02 +02:00
|
|
|
'</span></div>
|
2009-02-23 21:45:31 +01:00
|
|
|
<div id="egwpopup_message"></div>
|
2009-03-24 10:33:28 +01:00
|
|
|
<div id="egwpopup_footer">
|
2013-07-22 15:29:20 +02:00
|
|
|
<input id="egwpopup_ok_button" type="button" value="'. lang('ok'). '">
|
2006-09-07 09:04:15 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
';
|
2013-07-22 15:29:20 +02:00
|
|
|
unset($notification_config);
|
2006-09-25 10:23:30 +02:00
|
|
|
}
|