A lot more naming conventions applied
[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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!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 ADD_DESCR("admin", basename(__FILE__));
42
43 // Otherwise load include file 'overview-inc' (old standard overview page)
44 require_once(PATH."inc/modules/admin/overview-inc.php");
45
46 $JOBS_DONE = true;
47 // When the admin is logging in check several things first (new jobs to complete and so on)
48 if ($GLOBALS['action'] == "login")
49 {
50         if (EXT_IS_ACTIVE("task"))
51         {
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         }
55          else
56         {
57                 // Output standart overview (provided by overview-inc.php)
58                 $JOBS_DONE = OUTPUT_STANDARD_OVERVIEW($result_tasks);
59         }
60 }
61 // Do we have new jobs or not?
62 if ($JOBS_DONE)
63 {
64         // Generate overview of all main menus
65         global $menuDesription, $FATAL;
66         if ((is_array($menuDesription)) && (sizeof($menuDesription) > 0)) {
67                 $OUT = "";
68                 foreach ($menuDesription as $key=>$value)
69                 {
70                         // Prepare content
71                         $content = array(
72                                 'title' => $menuTitle[$key],
73                                 'text'  => $value
74                         );
75
76                         // Load row template
77                         $OUT .= LOAD_TEMPLATE("admin_menu_hints_row", true, $content);
78                 }
79
80                 // Load base template
81                 LOAD_TEMPLATE("admin_menu_hints", false, $OUT);
82         }
83 } elseif (!EXT_IS_ACTIVE("task")) {
84         // List selected tasks on overview when task management is not active
85         OUTPUT_SELECTED_TASKS($_POST, $result_tasks);
86 }
87
88 //
89 ?>