Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-config_home.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/22/2004 *
4  * ===================                          Last change: 09/22/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_home.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Set 'home' page                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : 'home'-Seite festlegen                           *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // Init 'sub' value
47 $sub = '';
48 if (isGetRequestElementSet('sub')) {
49         $sub = getRequestElement('sub');
50 } // END - if
51
52 switch ($sub) {
53         case 'settings': // Settings related to the index page
54                 if (isFormSent('save_config')) {
55                         // Save settings
56                         adminSaveSettingsFromPostData();
57
58                         // Display continue link
59                         displayMessage('<a href="{%url=modules.php?module=admin&amp;what=config_home&amp;sub=settings%}">{--ADMIN_CONTINUE_TO_CONFIG--}</a>');
60                 } else {
61                         // Prepare data for the template
62                         $content = array_fill(-1, 60, '');
63                         $content[getConfig('index_delay')] = ' selected="selected"';
64
65                         // Generate selection
66                         $content['cookie_selection'] = createConfigurationTimeSelections('index_cookie', 'YMWD');
67
68                         // Output form
69                         loadTemplate('admin_config_home', FALSE, $content);
70                 }
71                 break;
72
73         case 'target': // Set which what-file will be placed in home-page (only modules.php?module=index)
74                 if (isGetRequestElementSet('home')) {
75                         // Set new home
76                         updateConfiguration('index_home', getRequestElement('home'));
77                 } // END - if
78
79                 // Load all what menu points
80                 $result = sqlQuery("SELECT
81         `id`,
82         `what`,
83         `title`
84 FROM
85         `{?_MYSQL_PREFIX?}_guest_menu`
86 WHERE
87         `action`='main' AND
88         `what` != '' AND
89         `what` IS NOT NULL AND
90         `locked`='N'
91 ORDER BY
92         `sort` ASC", __FILE__, __LINE__);
93
94                 // Init variables
95                 $OUT = '';
96
97                 // Process all entries
98                 while ($content = sqlFetchArray($result)) {
99                         // Link for setting 'what' as new 'home'
100                         $newHomeLink = '<a href="{%url=modules.php?module=admin&amp;what=config_home&amp;sub=target&amp;home=' . $content['what'] . '%}">{--_IS_NEW_HOME--}</a>';
101
102                         // Is this current home?
103                         if ($content['what'] == getIndexHome()) {
104                                 // Is current home
105                                 $newHomeLink      = '<div class="admin_mark">{--_IS_CURRENT_HOME--}</div>';
106                                 $content['title'] = '<div class="admin_mark">' . $content['title'] . '</div>';
107                         } // END - if
108
109                         // Prepare content
110                         $content['link'] = $newHomeLink;
111
112                         // Load row template
113                         $OUT .= loadTemplate('admin_list_home_row', TRUE, $content);
114                 } // END - while
115
116                 // Free memory
117                 sqlFreeResult($result);
118
119                 // Load template
120                 loadTemplate('admin_list_home', FALSE, $OUT);
121                 break;
122
123         default: // Output selection table
124                 loadTemplate('admin_config_home_main');
125                 break;
126 } // END - switch
127
128 // [EOF]
129 ?>