mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
6667cca4de
/** * Notifies users according to their preferences. * * @abstract NOTE:Notifications are small messages. No subject and no attechments. * If you need this kind of elements you probably want to send a mail, don't you :-) * @abstract NOTE: This is for instant notifications. If you need time dependend notifications use the * asyncservices wrapper! * * The classes doing the notifications are called notification_<method> and should only be * called from this class. * */
29 lines
1.3 KiB
PHP
29 lines
1.3 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: $
|
|
* @todo check if user wants notifications via egw popup!
|
|
*/
|
|
$GLOBALS['egw']->translation->add_app('notifications');
|
|
if (!$GLOBALS['egw_info']['user']['preferences']['notifications']['disable_ajaxpopup']) {
|
|
echo '<script src="'. $GLOBALS['egw_info']['server']['webserver_url']. SEP. 'notifications'. SEP. 'js'. SEP. 'notificationajaxpopup.js'. '" type="text/javascript"></script>';
|
|
echo '<script type="text/javascript">notificationwindow_init()</script>';
|
|
echo '
|
|
<div id="notificationwindow" style="display: none; z-index: 999;">
|
|
<div id="divAppboxHeader">'. lang('Notification'). '</div>
|
|
<div id="divAppbox">
|
|
<div id="notificationwindow_message"</div>
|
|
<center><input type="submit" value="'. lang('ok'). '" onClick="notificationwindow_button_ok();"></center>
|
|
</div>
|
|
</div>
|
|
';
|
|
} |