Extension ext-grade continued, a lot renames:
[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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.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 // Add new code?
47 if ((isFormSent('add')) && (isPostRequestParameterSet('code')) && (isPostRequestParameterSet('descr'))) {
48         // Check if country code does already exist
49         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_countries` WHERE `code`='%s' LIMIT 1",
50         array(strtoupper(postRequestParameter('code'))), __FILE__, __LINE__);
51         if (SQL_HASZERONUMS($result)) {
52                 // Save entry
53                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_countries` (`code`, `descr`, `is_active`) VALUES ('%s','%s','%s')",
54                 array(
55                         strtoupper(substr(postRequestParameter('code'), 0, 2)),
56                         postRequestParameter('descr'),
57                         postRequestParameter('is_active')
58                 ), __FILE__, __LINE__);
59
60                 // Country added
61                 $message = getMaskedMessage('ADMIN_COUNTRY_ADDED', strtoupper(postRequestParameter('descr')));
62         } else {
63                 // Free memory
64                 SQL_FREERESULT($result);
65
66                 // Does already exist
67                 $message = getMaskedMessage('ADMIN_COUNTRY_ALREADY', strtoupper(postRequestParameter('code')));
68         }
69
70         // Display message
71         displayMessage($message);
72 } elseif ((isFormSent('do_edit')) && (isPostRequestParameterSet('id'))) {
73         // Change all status
74         adminChangeActivationStatus(postRequestParameter('id'), 'countries', 'is_active');
75
76         // Show next link
77         loadTemplate('admin_next_link', false, array(
78                 'url'   => 'modules.php?module=admin&amp;what=list_country',
79                 'title' => '{--ADMIN_COUNTRY_ACTIVATION_NEXT_LINK--}'
80         ));
81 } elseif (((isFormSent('edit')) || (isPostRequestParameterSet('delete'))) && (isPostRequestParameterSet('id'))) {
82         if (count(postRequestParameter('id')) > 0) {
83                 if (isFormSent('edit')) {
84                         // Edit template
85                         $row    = 'admin_list_country_edit_row';
86                         $post   = 'modify';
87                         $class  = 'form_submit';
88                         $submit = '{--ADMIN_COUNTRY_EDIT_NOW--}';
89                         $title  = '{--ADMIN_COUNTRY_EDIT_TITLE--}';
90                         $reset  = '<input type="reset" class="form_reset" value="{--UNDO_SELECTIONS--}" /> ';
91                 } else {
92                         // Delete template
93                         $row    = 'admin_list_country_del_row';
94                         $post   = 'remove';
95                         $class  = 'form_delete';
96                         $submit = '{--ADMIN_COUNTRY_DELETE_NOW--}';
97                         $title  = '{--ADMIN_COUNTRY_DELETE_TITLE--}';
98                         $reset  = '';
99                 }
100
101                 // Edit all selected country codes
102                 $OUT = '';
103                 foreach (postRequestParameter('id') as $id => $isActive) {
104                         // Load data from DB
105                         $result = SQL_QUERY_ESC("SELECT `id`, `code`, `descr` FROM `{?_MYSQL_PREFIX?}_countries` WHERE `id`=%s LIMIT 1",
106                                 array(bigintval($id)), __FILE__, __LINE__);
107                         if (SQL_NUMROWS($result) == 1) {
108                                 // Load data
109                                 $content = SQL_FETCHARRAY($result);
110
111                                 if ($post == 'modify') {
112                                         // Generate default selection in edit-mode
113                                         $content['is_active'] = generateOptionList('/ARRAY/', array('Y', 'N'), array('{--YES--}', '{--NO--}'), $isActive);
114                                 } else {
115                                         // Only display status when in delete-mode
116                                         $content['is_active'] = '{%pipe,translateYesNo=' . $isActive . '%}';
117                                 }
118
119                                 // Insert row template and switch color
120                                 $OUT .= loadTemplate($row, true, $content);
121                         } // END - if
122
123                         // Free result
124                         SQL_FREERESULT($result);
125                 } // END - foreach
126
127                 // Prepare content for template
128                 $content = array(
129                         'rows'   => $OUT,
130                         'mode'   => $post,
131                         'class'  => $class,
132                         'title'  => $title,
133                         'submit' => $submit,
134                         'reset'  => $reset,
135                 );
136
137                 // Load main template
138                 loadTemplate('admin_list_country_form', false, $content);
139         } // END - if
140 } else {
141         // Shall we modify / remove entries now?
142         $message = '';
143         initSqls();
144         if ((isPostRequestParameterSet('modify')) && (isPostRequestParameterSet('id'))) {
145                 // Modify
146                 foreach (postRequestParameter('id') as $id => $sel) {
147                         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");
148                 } // END - foreach
149
150                 // Create message
151                 $message = '{--ADMIN_COUNTRIES_MODIFIED--}';
152         } elseif ((isFormSent('do_delete')) && (isPostRequestParameterSet('id'))) {
153                 // Remove
154                 $IDs = implode(',', array_keys(postRequestParameter('id')));
155                 addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_countries` WHERE `id` IN (".$IDs.") LIMIT ".count(postRequestParameter('id'))."");
156
157                 // Create message
158                 $message = '{--ADMIN_COUNTRIES_REMOVED--}';
159         }
160
161         if ((!empty($message)) && (countSqls() > 0)) {
162                 // Run SQL commands
163                 runFilterChain('run_sqls');
164
165                 // Display message
166                 displayMessage($message);
167         } // END - if
168
169         // Load currenty setup country codes to list
170         $result = SQL_QUERY('SELECT `id`, `code`, `descr`, `is_active` FROM `{?_MYSQL_PREFIX?}_countries` ORDER BY `code` ASC',
171         __FILE__, __LINE__);
172
173         // Do we have entries?
174         if (!SQL_HASZERONUMS($result)) {
175                 // List all countries
176                 $OUT = '';
177                 while ($content = SQL_FETCHARRAY($result)) {
178                         // Load row template and switch colors
179                         $OUT .= loadTemplate('admin_list_country_row', true, $content);
180                 } // END - while
181
182                 // Free memory
183                 SQL_FREERESULT($result);
184         } else {
185                 // No code setup so far (not possible by this software! 'DE' for 'Deutschland' is default
186                 $OUT = loadTemplate('admin_list_country_no_row', true);
187         }
188
189         // Add list to constant for the template
190         $content['rows'] = $OUT;
191
192         // Include add template
193         $content['add_form'] = loadTemplate('admin_add_country', true);
194
195         // Load main template
196         loadTemplate('admin_list_country', false, $content);
197 }
198
199 // [EOF]
200 ?>