From d0d44d07d4e76d2f2016f2f0f26cdc17bf6b2bf5 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 22 Jun 2010 17:31:55 +0000 Subject: [PATCH] removed since 1.6 not used notify*.php files --- notify.php | 40 ---------------------------------------- notify_simple.php | 26 -------------------------- notifyxml.php | 46 ---------------------------------------------- 3 files changed, 112 deletions(-) delete mode 100644 notify.php delete mode 100644 notify_simple.php delete mode 100755 notifyxml.php diff --git a/notify.php b/notify.php deleted file mode 100644 index 4da8c328d7..0000000000 --- a/notify.php +++ /dev/null @@ -1,40 +0,0 @@ - True, - 'nonavbar' => True, - 'disable_Template_class' => True, - 'currentapp' => 'notifywindow' - ); - include('./header.inc.php'); - $charSet = $GLOBALS['egw']->translation->charset(); -?> - - - -"; -?> - Notify Window - - - - -hooks->process('notifywindow'); -?> -
- - diff --git a/notify_simple.php b/notify_simple.php deleted file mode 100644 index a45c5536e4..0000000000 --- a/notify_simple.php +++ /dev/null @@ -1,26 +0,0 @@ - True, - 'nonavbar' => True, - 'disable_Template_class' => True, - 'currentapp' => 'notifywindow' - ); - include('./header.inc.php'); - - echo ''; - $GLOBALS['egw']->hooks->process('notifywindow_simple',array('email')); - echo ''; -?> diff --git a/notifyxml.php b/notifyxml.php deleted file mode 100755 index cd1610c41f..0000000000 --- a/notifyxml.php +++ /dev/null @@ -1,46 +0,0 @@ -* * - * -------------------------------------------- * - * 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. * - \**************************************************************************/ - - /* $Id$ */ - - $egw_info = array(); - $GLOBALS['egw_info']['flags'] = array( - 'noheader' => True, - 'nonavbar' => True, - 'disable_Template_class' => True, - 'currentapp' => 'notifywindow' - ); - include('./header.inc.php'); - header("Content-type: text/xml"); - - header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); - header("Last-Modified: " . gmdate( "D, d M Y H:i:s") . "GMT"); - header("Cache-Control: no-cache, must-revalidate"); - header("Pragma: no-cache"); - - echo ''; - $apps = $GLOBALS['egw']->hooks->process('notify'); - echo "\r\n\r\n"; - foreach($apps as $app => $message) - { - if($message != '') - { - $title = $GLOBALS['egw_info']['apps'][$app]['title']; - - echo " ".$title." -".$GLOBALS['egw']->link("/".$app."/index.php")." -".$message." \r\n"; - } - } - echo ""; -?>