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