(no commit message)
[mailer.git] / 0.2.1 / inc / modules / admin / what-overview.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 09/05/2003 *\r
4  * ===============                              Last change: 07/13/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : what-overview.php                                *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : Generate menu's description overview             *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Menübeschreibungsübersicht generieren            *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2007 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Some security stuff...\r
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) {\r
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";\r
37         require($INC);\r
38 }\r
39 \r
40 // Add description as navigation point\r
41 ADD_DESCR("admin", basename(__FILE__));\r
42 \r
43 // Otherwise load include file 'overview-inc' (old standard overview page)\r
44 require_once(PATH."inc/modules/admin/overview-inc.php");\r
45 \r
46 $JOBS_DONE = true;\r
47 // When the admin is logging in check several things first (new jobs to complete and so on)\r
48 if ($GLOBALS['action'] == "login")\r
49 {\r
50         if (EXT_IS_ACTIVE("task"))\r
51         {\r
52                 // When task extension is registered output advanced overview page\r
53                 $JOBS_DONE = OUTPUT_ADVANCED_OVERVIEW($result_tasks); // This function is provided by the extension 'task'\r
54         }\r
55          else\r
56         {\r
57                 // Output standart overview (provided by overview-inc.php)\r
58                 $JOBS_DONE = OUTPUT_STANDARD_OVERVIEW($result_tasks);\r
59         }\r
60 }\r
61 // Do we have new jobs or not?\r
62 if ($JOBS_DONE)\r
63 {\r
64         // Generate overview of all main menus\r
65         global $menuDesription, $FATAL;\r
66         if ((is_array($menuDesription)) && (sizeof($menuDesription) > 0)) {\r
67                 $OUT = "";\r
68                 foreach ($menuDesription as $key=>$value)\r
69                 {\r
70                         // Prepare content\r
71                         $content = array(\r
72                                 'title' => $MTITLE[$key],\r
73                                 'text'  => $value\r
74                         );\r
75 \r
76                         // Load row template\r
77                         $OUT .= LOAD_TEMPLATE("admin_menu_hints_row", true, $content);\r
78                 }\r
79 \r
80                 // Load base template\r
81                 LOAD_TEMPLATE("admin_menu_hints", false, $OUT);\r
82         }\r
83 } elseif (!EXT_IS_ACTIVE("task")) {\r
84         // List selected tasks on overview when task management is not active\r
85         OUTPUT_SELECTED_TASKS($_POST, $result_tasks);\r
86 }\r
87 \r
88 //\r
89 ?>\r