A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[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 $jobsDone = 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                 $jobsDone = 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                 $jobsDone = OUTPUT_STANDARD_OVERVIEW($result_tasks);
63         }
64 } // END - if
65
66 // Are we in 'welcome' page and are there jobs to be done?
67 if (!ifAdminMenuHasEntries($GLOBALS['action'])) {
68         // This menu is empty and so no content is displayed
69         LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_MENU_IS_EMPTY'), $GLOBALS['action']));
70 } elseif ($jobsDone === true) {
71         // Generate overview of all main menus
72         if ((is_array($GLOBALS['menu']['description'])) && (count($GLOBALS['menu']['description']) > 0)) {
73                 $OUT = '';
74                 foreach ($GLOBALS['menu']['description'] as $key => $value) {
75                         // Prepare content
76                         $content = array(
77                                 'title' => $GLOBALS['menu']['title'][$key],
78                                 'text'  => $value
79                         );
80
81                         // Load row template
82                         $OUT .= LOAD_TEMPLATE("admin_menu_hints_row", true, $content);
83                 } // END - foreach
84
85                 // Load base template
86                 LOAD_TEMPLATE("admin_menu_hints", false, $OUT);
87         }
88 } elseif (!$taskExt) {
89         if (EXT_IS_ACTIVE('task')) {
90                 // Output warning message
91                 LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('EXTENSION_WARNING_EXT_INACTIVE'), 'task'));
92         }
93
94         // List selected tasks on overview when task management is not active
95         OUTPUT_SELECTED_TASKS(REQUEST_POST_ARRAY(), $result_tasks);
96 }
97
98 //
99 ?>