egroupware_official/notify.php

44 lines
1.4 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-06-07 12:56:32 +02:00
$phpgw_info['flags'] = array(
'noheader' => True,
'nonavbar' => True,
'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-03-10 09:35:34 +01:00
window.opener.document.location.href="<?php echo $phpgw->link('/email/index.php'); ?>";
2001-02-16 04:55:30 +01:00
}
//-->
</script>
2000-08-18 05:24:22 +02:00
</head>
2001-06-07 12:56:32 +02:00
<body bgcolor="<?php echo $phpgw_info['theme']['bg_color']; ?>" alink="blue" vlink="blue" link="blue">
2001-02-16 04:55:30 +01:00
<table>
2001-06-07 12:56:32 +02:00
<tr><td><a href="<?php echo $phpgw->link('/notify.php'); ?>">Check Now</a></td></tr>
2000-08-18 05:24:22 +02:00
<?php
2001-06-07 12:56:32 +02:00
$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>