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