21452467c839ddeed01954cdfdbaac391a424f91
[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         global $menuDesription;
65         if ((is_array($menuDesription)) && (sizeof($menuDesription) > 0)) {
66                 $OUT = "";
67                 foreach ($menuDesription as $key => $value)
68                 {
69                         // Prepare content
70                         $content = array(
71                                 'title' => $menuTitle[$key],
72                                 'text'  => $value
73                         );
74
75                         // Load row template
76                         $OUT .= LOAD_TEMPLATE("admin_menu_hints_row", true, $content);
77                 }
78
79                 // Load base template
80                 LOAD_TEMPLATE("admin_menu_hints", false, $OUT);
81         }
82 } elseif (!$taskExt) {
83         if (EXT_IS_ACTIVE("task")) {
84                 // Output warning message
85                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('EXTENSION_WARNING_EXT_INACTIVE'), "task"));
86         }
87
88         // List selected tasks on overview when task management is not active
89         OUTPUT_SELECTED_TASKS($_POST, $result_tasks);
90 }
91
92 //
93 ?>