2 /************************************************************************
3 * MXChange v0.2.1 Start: 09/05/2003 *
4 * =============== Last change: 07/13/2004 *
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 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 // Add description as navigation point
41 // In Opera browsers the menu is being displayed double: ADD_DESCR("admin", __FILE__);
43 // Otherwise load include file 'overview-inc' (old standard overview page)
44 require_once(PATH."inc/modules/admin/overview-inc.php");
47 $taskExt = false; // Default is that "task" is not installed
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")) && (function_exists('OUTPUT_ADVANCED_OVERVIEW'))) {
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'
56 // Output standart overview (provided by overview-inc.php)
57 $JOBS_DONE = OUTPUT_STANDARD_OVERVIEW($result_tasks);
61 // Are there jobs to be done?
63 // Generate overview of all main menus
64 global $menuDesription, $FATAL;
65 if ((is_array($menuDesription)) && (sizeof($menuDesription) > 0)) {
67 foreach ($menuDesription as $key => $value)
71 'title' => $menuTitle[$key],
76 $OUT .= LOAD_TEMPLATE("admin_menu_hints_row", true, $content);
80 LOAD_TEMPLATE("admin_menu_hints", false, $OUT);
82 } elseif (!$taskExt) {
83 if (EXT_IS_ACTIVE("task")) {
84 // Output warning message
85 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(EXTENSION_WARNING_EXT_INACTIVE, "task"));
86 OUTPUT_HTML("<br />");
89 // List selected tasks on overview when task management is not active
90 OUTPUT_SELECTED_TASKS($_POST, $result_tasks);