fe0e6b9ee7d0e9265389e724ce57c4499c2a144c
[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 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                                 list($code, $descr) = SQL_FETCHROW($result);
112                                 SQL_FREERESULT($result);
113
114                                 // Prepare data, load row template and switch colors
115                                 $content = array(
116                                         'id'    => $id,
117                                         'code'  => $code,
118                                         'descr' => $descr,
119                                 );
120
121                                 if ($post == 'modify') {
122                                         // Generate default selection in edit-mode
123                                         $content['status'] = generateOptionList('/ARRAY/', array('Y', 'N'), array('{--YES--}', '{--NO--}'), $status);
124                                 } else {
125                                         // Only display status when in delete-mode
126                                         $content['status'] = translateYesNo($status);
127                                 }
128
129                                 // Insert row template and switch color
130                                 $OUT .= loadTemplate($row, true, $content);
131                         } // END - if
132                 } // END - foreach
133
134                 // Prepare content for template
135                 $content = array(
136                         'rows'   => $OUT,
137                         'mode'   => $post,
138                         'class'  => $class,
139                         'title'  => $title,
140                         'submit' => $submit,
141                         'reset'  => $reset,
142                 );
143
144                 // Load main template
145                 loadTemplate('admin_list_country_form', false, $content);
146         }
147 } else {
148         // Shall we modify / remove entries now?
149         $message = ''; initSqls();
150         if ((isPostRequestParameterSet('modify')) && (isPostRequestParameterSet('id'))) {
151                 // Modify
152                 foreach (postRequestParameter('id') as $id => $sel) {
153                         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");
154                 }
155
156                 // Create message
157                 $message = '{--ADMIN_COUNTRIES_MODIFIED--}';
158         } elseif ((isFormSent('remove')) && (isPostRequestParameterSet('id'))) {
159                 // Remove
160                 $IDs = implode(',', array_keys(postRequestParameter('id')));
161                 addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_countries` WHERE `id` IN (".$IDs.") LIMIT ".count(postRequestParameter('id'))."");
162
163                 // Create message
164                 $message = '{--ADMIN_COUNTRIES_REMOVED--}';
165         }
166
167         if ((!empty($message)) && (countSqls() > 0)) {
168                 // Run SQL commands
169                 runFilterChain('run_sqls');
170
171                 // Display message
172                 loadTemplate('admin_settings_saved', false, $message);
173         }
174
175         // Load currenty setup country codes to list
176         $result = SQL_QUERY('SELECT id, code, descr, is_active FROM `{?_MYSQL_PREFIX?}_countries` ORDER BY code',
177         __FILE__, __LINE__);
178         if (SQL_NUMROWS($result) > 0) {
179                 // List all countries
180                 $OUT = '';
181                 while ($content = SQL_FETCHARRAY($result)) {
182                         // Prepare array for the template
183                         $content['active'] = translateYesNo($content['is_active']);
184
185                         // Load row template and switch colors
186                         $OUT .= loadTemplate('admin_list_country_row', true, $content);
187                 } // END - while
188
189                 // Free memory
190                 SQL_FREERESULT($result);
191         } else {
192                 // No code setup so far (not possible by this software! 'DE' for 'Deutschland' is default
193                 $OUT = loadTemplate('admin_list_country_no_row', true);
194         }
195
196         // Add list to constant for the template
197         $content['rows'] = $OUT;
198
199         // Include add template
200         $content['add_form'] = loadTemplate('admin_add_country', true);
201
202         // Load main template
203         loadTemplate('admin_list_country', false, $content);
204 }
205
206 // [EOF]
207 ?>