egroupware/notify.php

46 lines
1.6 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* 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');
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">
<title>Notify Window</title>
<script language="JavaScript">
<!-- Activate Cloaking Device
function CheckEmail()
{
2001-12-24 06:04:23 +01:00
window.opener.document.location.href="<?php echo $GLOBALS['phpgw']->link('/index.php','menuaction=email.uiindex.index'); ?>";
2001-02-16 04:55:30 +01:00
}
//-->
</script>
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>
2001-12-24 06:04:23 +01:00
<tr><td><a href="<?php echo $GLOBALS['phpgw']->link('/notify.php'); ?>">Check Now</a></td></tr>
2000-08-18 05:24:22 +02:00
<?php
2001-12-24 06:04:23 +01:00
$GLOBALS['phpgw']->common->hook('notifywindow',array('email'));
2000-08-18 05:24:22 +02:00
?>
2001-02-16 04:55:30 +01:00
</table>
</body>
</html>