More fixes from bugtracker issues, thanks to profi-concept
[mailer.git] / inc / modules / admin / what-list_country.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 // Add new code?
44 if ((isset($_POST['add'])) && (!empty($_POST['code'])) && (!empty($_POST['descr']))) {
45         // Check if country code does already exist
46         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_countries WHERE code='%s' LIMIT 1",
47          array(strtoupper($_POST['code'])), __FILE__, __LINE__);
48         if (SQL_NUMROWS($result) == 0) {
49                 // Save entry
50                 SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_countries (code, descr, is_active) VALUES ('%s','%s','%s')",
51  array(strtoupper(substr($_POST['code'], 0, 2)), $_POST['descr'], $_POST['is_active']), __FILE__, __LINE__);
52
53                 // Country added
54                 $MSG = ADMIN_COUNTRY_ADDED_1.strtoupper($_POST['descr']).ADMIN_COUNTRY_ADDED_2;
55         } else {
56                 // Free memory
57                 SQL_FREERESULT($result);
58
59                 // Does already exist
60                 $MSG = ADMIN_COUNTRY_ALREADY_1.strtoupper($_POST['code']).ADMIN_COUNTRY_ALREADY_2;
61         }
62
63         // Display message
64         LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
65         OUTPUT_HTML("<br />");
66 } elseif ((isset($_POST['change'])) && (!empty($_POST['id']))) {
67         // Change all status
68         ADMIN_CHANGE_ACTIVATION_STATUS($_POST['id'], "countries", "is_active");
69 } elseif (((isset($_POST['edit'])) || (isset($_POST['delete']))) && (!empty($_POST['id']))) {
70         if (count($_POST['id']) > 0) {
71                 if (isset($_POST['edit'])) {
72                         // Edit template
73                         $row    = "admin_list_country_edit_row";
74                         $post   = "modify";
75                         $class  = "admin_submit";
76                         $submit = ADMIN_COUNTRY_EDIT_NOW;
77                         $title  = ADMIN_COUNTRY_EDIT_TITLE;
78                         $reset  = "<INPUT type=\"reset\" class=\"admin_reset\" value=\"".UNDO_SELECTIONS."\">&nbsp;*\n";
79                 } else {
80                         // Delete template
81                         $row    = "admin_list_country_del_row";
82                         $post   = "remove";
83                         $class  = "admin_delete";
84                         $submit = ADMIN_COUNTRY_DELETE_NOW;
85                         $title  = ADMIN_COUNTRY_DELETE_TITLE;
86                         $reset  = "";
87                 }
88
89                 // Edit all selected country codes
90                 $OUT = ""; $SW = 2;
91                 foreach ($_POST['id'] as $id => $status) {
92                         // Load data from DB
93                         $result = SQL_QUERY_ESC("SELECT code, descr FROM "._MYSQL_PREFIX."_countries WHERE id=%s LIMIT 1",
94                                 array(bigintval($id)), __FILE__, __LINE__);
95                         if (SQL_NUMROWS($result) == 1) {
96                                 // Load data
97                                 list($code, $descr) = SQL_FETCHROW($result);
98                                 SQL_FREERESULT($result);
99
100                                 // Prepare data, load row template and switch colors
101                                 $content = array(
102                                         'id'    => $id,
103                                         'code'  => $code,
104                                         'descr' => $descr,
105                                         'sw'    => $SW,
106                                 );
107
108                                 if ($post == "modify") {
109                                         // Generate default selection in edit-mode
110                                         $content['status'] = ADD_OPTION_LINES("/ARRAY/", array("Y","N"), array(YES, NO ), $status);
111                                 } else {
112                                         // Only display status when in delete-mode
113                                         $content['status'] = TRANSLATE_YESNO($status);
114                                 }
115
116                                 // Insert row template and switch color
117                                 $OUT .= LOAD_TEMPLATE($row, true, $content);
118                                 $SW = 3 - $SW;
119                         }
120                 }
121                 define('__COUNTRY_ROWS'  , $OUT);
122                 define('__COUNTRY_MODE'  , $post);
123                 define('__COUNTRY_CLASS' , $class);
124                 define('__COUNTRY_SUBMIT', $submit);
125                 define('__COUNTRY_TITLE' , $title);
126                 define('__COUNTRY_RESET' , $reset);
127
128                 // Load main template
129                 LOAD_TEMPLATE("admin_list_country_form");
130         }
131 } else {
132         // Shall we modify / remove entries now?
133         $MSG = ""; $SQLs = array();
134         if ((isset($_POST['modify'])) && (!empty($_POST['id']))) {
135                 // Modify
136                 foreach ($_POST['id'] as $id => $sel) {
137                         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_countries SET code='".$_POST['code'][$id]."', descr='".$_POST['descr'][$id]."', is_active='".$_POST['is_active'][$id]."' WHERE id='".$id."' LIMIT 1";
138                 }
139
140                 // Create message
141                 $MSG = ADMIN_COUNTRIES_MODIFIED;
142         } elseif ((isset($_POST['remove'])) && (!empty($_POST['id']))) {
143                 // Remove
144                 $IDs = implode(",", array_keys($_POST['id']));
145                 $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_countries WHERE id IN (".$IDs.") LIMIT ".count($_POST['id'])."";
146
147                 // Create message
148                 $MSG = ADMIN_COUNTRIES_REMOVED;
149         }
150
151         if ((!empty($MSG)) && (count($SQLs) > 0)) {
152                 // Run SQL commands
153                 foreach ($SQLs as $sql) {
154                         $result = SQL_QUERY($sql, __FILE__, __LINE__);
155                 }
156
157                 // Display message
158                 LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
159                 OUTPUT_HTML("<br />");
160         }
161
162         // Load currenty setup country codes to list
163         $result = SQL_QUERY("SELECT id, code, descr, is_active FROM "._MYSQL_PREFIX."_countries ORDER BY code", __FILE__, __LINE__);
164         if (SQL_NUMROWS($result) > 0) {
165                 // List all countries
166                 $OUT = ""; $SW = 2;
167                 while(list($id, $code, $descr, $active) = SQL_FETCHROW($result)) {
168                         // Prepare array for the template
169                         $content = array(
170                                 'id'     => $id,
171                                 'code'   => $code,
172                                 'name'   => $descr,
173                                 'active' => TRANSLATE_YESNO($active),
174                                 'sw'     => $SW,
175                                 'status' => $active,
176                         );
177
178                         // Load row template and switch colors
179                         $OUT .= LOAD_TEMPLATE("admin_list_country_row", true, $content);
180                         $SW = 3 - $SW;
181                 }
182
183                 // Free memory
184                 SQL_FREERESULT($result);
185         } else {
186                 // No code setup so far (not possible by this software! 'DE' for 'Deutschland' is default
187                 $OUT = LOAD_TEMPLATE("admin_list_country_no_row", true);
188         }
189
190         // Add list to constant for the template
191         define('__COUNTRY_ROWS', $OUT);
192
193         // Include add template
194         define('__ADD_COUNTRY_FORM', LOAD_TEMPLATE("admin_add_country", true));
195
196         // Load main template
197         LOAD_TEMPLATE("admin_list_country");
198 }
199
200 //
201 ?>