Yet another fix for missing 'def_refid' in install phase
[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 - 2009 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')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 // In Opera browsers the menu is being displayed double: addMenuDescription('admin', __FILE__);
46
47 // Otherwise load include file 'overview-inc' (old standard overview page)
48 loadIncludeOnce('inc/modules/admin/overview-inc.php');
49
50 $jobsDone = true;
51 $taskExt = false; // Default is that 'task' is not installed
52
53 // When the admin is logging in check several things first (new jobs to complete and so on)
54 if (getAction() == 'login') {
55         if (isExtensionActive('task')) {
56                 // When task extension is registered output advanced overview page
57                 $jobsDone = outputAdvancedOverview($result_tasks); // This function is provided by the extension 'task'
58                 $taskExt = true;
59         } else {
60                 // Output standart overview (provided by overview-inc.php)
61                 $jobsDone = outputStandardOverview($result_tasks);
62         }
63 } // END - if
64
65 // Are we in 'welcome' page and are there jobs to be done?
66 if (!ifAdminMenuHasEntries(getAction())) {
67         // This menu is empty and so no content is displayed
68         loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_MENU_IS_EMPTY'), getAction()));
69 } elseif ($jobsDone === true) {
70         // Generate overview of all main menus
71         if ((is_array($GLOBALS['menu']['description'])) && (count($GLOBALS['menu']['description']) > 0)) {
72                 $OUT = '';
73                 foreach ($GLOBALS['menu']['description'] as $key => $value) {
74                         // Prepare content
75                         $content = array(
76                                 'title' => $GLOBALS['menu']['title'][$key],
77                                 'text'  => $value
78                         );
79
80                         // Load row template
81                         $OUT .= loadTemplate('admin_menu_hints_row', true, $content);
82                 } // END - foreach
83
84                 // Load base template
85                 loadTemplate('admin_menu_hints', false, $OUT);
86         }
87 } elseif ($taskExt === false) {
88         if (isExtensionActive('task')) {
89                 // Output warning message
90                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('EXTENSION_WARNING_EXT_INACTIVE'), 'task'));
91         }
92
93         // List selected tasks on overview when task management is not active
94         outputSeletectedTasks(postRequestArray(), $result_tasks);
95 }
96
97 // [EOF]
98 ?>