egroupware_official/notify.php

41 lines
1.5 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
/**************************************************************************\
2004-03-26 20:56:37 +01:00
* eGroupWare *
* http://www.egroupware.org *
2000-08-18 05:24:22 +02:00
* -------------------------------------------- *
* 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$ */
2001-12-24 06:04:23 +01:00
$phpgw_info = array();
$GLOBALS['phpgw_info']['flags'] = array(
2001-06-07 12:56:32 +02:00
'noheader' => True,
'nonavbar' => True,
2001-08-10 04:09:12 +02:00
'disable_Template_class' => True,
2001-06-07 12:56:32 +02:00
'currentapp' => 'notifywindow'
);
include('header.inc.php');
2003-11-28 00:17:13 +01:00
$charSet = $GLOBALS['phpgw']->translation->charset();
2000-08-18 05:24:22 +02:00
?>
2001-02-16 04:55:30 +01:00
<html>
2000-08-18 05:24:22 +02:00
<head>
2001-02-16 04:55:30 +01:00
<meta http-equiv="Refresh" content="300">
2003-11-28 00:17:13 +01:00
<?php
print "<meta http-equiv=\"content-type\" content=\"text/html; charset=$charSet\" />";
?>
2001-02-16 04:55:30 +01:00
<title>Notify Window</title>
2000-08-18 05:24:22 +02:00
</head>
2001-12-24 06:04:23 +01:00
<body bgcolor="<?php echo $GLOBALS['phpgw_info']['theme']['bg_color']; ?>" alink="blue" vlink="blue" link="blue">
2001-02-16 04:55:30 +01:00
<table>
2003-11-28 00:17:13 +01:00
<tr><td><a href="<?php echo $GLOBALS['phpgw']->link('/notify.php'); ?>"><?php print lang('Check Now'); ?></a></td></tr>
2000-08-18 05:24:22 +02:00
<?php
$GLOBALS['phpgw']->hooks->process('notifywindow');
2000-08-18 05:24:22 +02:00
?>
2001-02-16 04:55:30 +01:00
</table>
</body>
</html>