Some more cleanups/improvements:
[mailer.git] / inc / modules / admin / what-list_country.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/30/2005 *
4  * ===================                          Last change: 04/30/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_country.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Manage country codes                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Country codes verwalten                          *
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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 }
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // Add new code?
49 if ((isFormSent('add')) && (isPostRequestParameterSet('code')) && (isPostRequestParameterSet('descr'))) {
50         // Check if country code does already exist
51         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_countries` WHERE code='%s' LIMIT 1",
52         array(strtoupper(postRequestParameter('code'))), __FILE__, __LINE__);
53         if (SQL_HASZERONUMS($result)) {
54                 // Save entry
55                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_countries` (code, descr, is_active) VALUES ('%s','%s','%s')",
56                 array(
57                 strtoupper(substr(postRequestParameter('code'), 0, 2)),
58                 postRequestParameter('descr'),
59                 postRequestParameter('is_active')
60                 ), __FILE__, __LINE__);
61
62                 // Country added
63                 $message = getMaskedMessage('ADMIN_COUNTRY_ADDED', strtoupper(postRequestParameter('descr')));
64         } else {
65                 // Free memory
66                 SQL_FREERESULT($result);
67
68                 // Does already exist
69                 $message = getMaskedMessage('ADMIN_COUNTRY_ALREADY', strtoupper(postRequestParameter('code')));
70         }
71
72         // Display message
73         loadTemplate('admin_settings_saved', false, $message);
74 } elseif ((isFormSent('change')) && (isPostRequestParameterSet('id'))) {
75         // Change all status
76         adminChangeActivationStatus(postRequestParameter('id'), 'countries', 'is_active');
77
78         // Show next link
79         loadTemplate('admin_next_link', false, array(
80                 'url'   => 'modules.php?module=admin&amp;what=list_country',
81                 'title' => '{--ADMIN_COUNTRY_ACTIVATION_NEXT_LINK--}'
82         ));
83 } elseif (((isFormSent('edit')) || (isPostRequestParameterSet('delete'))) && (isPostRequestParameterSet('id'))) {
84         if (count(postRequestParameter('id')) > 0) {
85                 if (isFormSent('edit')) {
86                         // Edit template
87                         $row    = 'admin_list_country_edit_row';
88                         $post   = 'modify';
89                         $class  = 'admin_submit';
90                         $submit = '{--ADMIN_COUNTRY_EDIT_NOW--}';
91                         $title  = '{--ADMIN_COUNTRY_EDIT_TITLE--}';
92                         $reset  = '<input type="reset" class="admin_reset" value="{--UNDO_SELECTIONS--}" /> ';
93                 } else {
94                         // Delete template
95                         $row    = 'admin_list_country_del_row';
96                         $post   = 'remove';
97                         $class  = 'admin_delete';
98                         $submit = '{--ADMIN_COUNTRY_DELETE_NOW--}';
99                         $title  = '{--ADMIN_COUNTRY_DELETE_TITLE--}';
100                         $reset  = '';
101                 }
102
103                 // Edit all selected country codes
104                 $OUT = '';
105                 foreach (postRequestParameter('id') as $id => $status) {
106                         // Load data from DB
107                         $result = SQL_QUERY_ESC("SELECT `id`, `code`, `descr` FROM `{?_MYSQL_PREFIX?}_countries` WHERE `id`=%s LIMIT 1",
108                                 array(bigintval($id)), __FILE__, __LINE__);
109                         if (SQL_NUMROWS($result) == 1) {
110                                 // Load data
111                                 $content = SQL_FETCHARRAY($result);
112
113                                 if ($post == 'modify') {
114                                         // Generate default selection in edit-mode
115                                         $content['status'] = generateOptionList('/ARRAY/', array('Y', 'N'), array('{--YES--}', '{--NO--}'), $status);
116                                 } else {
117                                         // Only display status when in delete-mode
118                                         $content['status'] = translateYesNo($status);
119                                 }
120
121                                 // Insert row template and switch color
122                                 $OUT .= loadTemplate($row, true, $content);
123                         } // END - if
124
125                         // Free result
126                         SQL_FREERESULT($result);
127                 } // END - foreach
128
129                 // Prepare content for template
130                 $content = array(
131                         'rows'   => $OUT,
132                         'mode'   => $post,
133                         'class'  => $class,
134                         'title'  => $title,
135                         'submit' => $submit,
136                         'reset'  => $reset,
137                 );
138
139                 // Load main template
140                 loadTemplate('admin_list_country_form', false, $content);
141         }
142 } else {
143         // Shall we modify / remove entries now?
144         $message = ''; initSqls();
145         if ((isPostRequestParameterSet('modify')) && (isPostRequestParameterSet('id'))) {
146                 // Modify
147                 foreach (postRequestParameter('id') as $id => $sel) {
148                         addSql("UPDATE `{?_MYSQL_PREFIX?}_countries` SET `code`='" . postRequestParameter('code', $id) . "', `descr`='" . postRequestParameter('descr', $id) . "', `is_active`='" . postRequestParameter('is_active', $id) . "' WHERE `id`=" . bigintval($id) . " LIMIT 1");
149                 }
150
151                 // Create message
152                 $message = '{--ADMIN_COUNTRIES_MODIFIED--}';
153         } elseif ((isFormSent('remove')) && (isPostRequestParameterSet('id'))) {
154                 // Remove
155                 $IDs = implode(',', array_keys(postRequestParameter('id')));
156                 addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_countries` WHERE `id` IN (".$IDs.") LIMIT ".count(postRequestParameter('id'))."");
157
158                 // Create message
159                 $message = '{--ADMIN_COUNTRIES_REMOVED--}';
160         }
161
162         if ((!empty($message)) && (countSqls() > 0)) {
163                 // Run SQL commands
164                 runFilterChain('run_sqls');
165
166                 // Display message
167                 loadTemplate('admin_settings_saved', false, $message);
168         } // END - if
169
170         // Load currenty setup country codes to list
171         $result = SQL_QUERY('SELECT id, code, descr, is_active FROM `{?_MYSQL_PREFIX?}_countries` ORDER BY code',
172         __FILE__, __LINE__);
173         if (!SQL_HASZERONUMS($result)) {
174                 // List all countries
175                 $OUT = '';
176                 while ($content = SQL_FETCHARRAY($result)) {
177                         // Prepare array for the template
178                         $content['active'] = translateYesNo($content['is_active']);
179
180                         // Load row template and switch colors
181                         $OUT .= loadTemplate('admin_list_country_row', true, $content);
182                 } // END - while
183
184                 // Free memory
185                 SQL_FREERESULT($result);
186         } else {
187                 // No code setup so far (not possible by this software! 'DE' for 'Deutschland' is default
188                 $OUT = loadTemplate('admin_list_country_no_row', true);
189         }
190
191         // Add list to constant for the template
192         $content['rows'] = $OUT;
193
194         // Include add template
195         $content['add_form'] = loadTemplate('admin_add_country', true);
196
197         // Load main template
198         loadTemplate('admin_list_country', false, $content);
199 }
200
201 // [EOF]
202 ?>