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