X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-list_country.php;h=2a151aa1e7351357f8e4ff4c5efcc217dc3a7a29;hb=fad1ea280c27f9ba8ae818b87b0ba29d2c113b1b;hp=b13b96105fe188b066792ba36523e8c37fc3b269;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/modules/admin/what-list_country.php b/inc/modules/admin/what-list_country.php index b13b96105f..2a151aa1e7 100644 --- a/inc/modules/admin/what-list_country.php +++ b/inc/modules/admin/what-list_country.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Country codes verwalten * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -60,18 +60,18 @@ if ((REQUEST_ISSET_POST(('add'))) && (REQUEST_ISSET_POST(('code'))) && (REQUEST_ ), __FILE__, __LINE__); // Country added - $MSG = ADMIN_COUNTRY_ADDED_1.strtoupper(REQUEST_POST('descr')).ADMIN_COUNTRY_ADDED_2; + $message = sprintf(getMessage('ADMIN_COUNTRY_ADDED'), strtoupper(REQUEST_POST('descr'))); } else { // Free memory SQL_FREERESULT($result); // Does already exist - $MSG = ADMIN_COUNTRY_ALREADY_1.strtoupper(REQUEST_POST('code')).ADMIN_COUNTRY_ALREADY_2; + $message = sprintf(getMessage('ADMIN_COUNTRY_ALREADY'), strtoupper(REQUEST_POST('code'))); } // Display message - LOAD_TEMPLATE("admin_settings_saved", false, $MSG); -} elseif ((REQUEST_ISSET_POST(('change'))) && (REQUEST_ISSET_POST(('id')))) { + LOAD_TEMPLATE("admin_settings_saved", false, $message); +} elseif ((REQUEST_ISSET_POST('change')) && (REQUEST_ISSET_POST(('id')))) { // Change all status ADMIN_CHANGE_ACTIVATION_STATUS(REQUEST_POST('id'), "countries", "is_active"); @@ -80,23 +80,23 @@ if ((REQUEST_ISSET_POST(('add'))) && (REQUEST_ISSET_POST(('code'))) && (REQUEST_ 'url' => "modules.php?module=admin&what=list_country", 'title' => getMessage('ADMIN_COUNTRY_ACTIVATION_NEXT_LINK') )); -} elseif (((REQUEST_ISSET_POST('edit')) || (REQUEST_ISSET_POST(('delete')))) && (REQUEST_ISSET_POST(('id')))) { +} elseif (((REQUEST_ISSET_POST('edit')) || (REQUEST_ISSET_POST('delete'))) && (REQUEST_ISSET_POST(('id')))) { if (count(REQUEST_POST('id')) > 0) { if (REQUEST_ISSET_POST('edit')) { // Edit template $row = "admin_list_country_edit_row"; $post = "modify"; $class = "admin_submit"; - $submit = ADMIN_COUNTRY_EDIT_NOW; - $title = ADMIN_COUNTRY_EDIT_TITLE; + $submit = getMessage('ADMIN_COUNTRY_EDIT_NOW'); + $title = getMessage('ADMIN_COUNTRY_EDIT_TITLE'); $reset = " *\n"; } else { // Delete template $row = "admin_list_country_del_row"; $post = "remove"; $class = "admin_delete"; - $submit = ADMIN_COUNTRY_DELETE_NOW; - $title = ADMIN_COUNTRY_DELETE_TITLE; + $submit = getMessage('ADMIN_COUNTRY_DELETE_NOW'); + $title = getMessage('ADMIN_COUNTRY_DELETE_TITLE'); $reset = ""; } @@ -144,7 +144,7 @@ if ((REQUEST_ISSET_POST(('add'))) && (REQUEST_ISSET_POST(('code'))) && (REQUEST_ } } else { // Shall we modify / remove entries now? - $MSG = ""; INIT_SQLS(); + $message = ""; INIT_SQLS(); if ((REQUEST_ISSET_POST(('modify'))) && (REQUEST_ISSET_POST(('id')))) { // Modify foreach (REQUEST_POST('id') as $id => $sel) { @@ -152,22 +152,22 @@ if ((REQUEST_ISSET_POST(('add'))) && (REQUEST_ISSET_POST(('code'))) && (REQUEST_ } // Create message - $MSG = getMessage('ADMIN_COUNTRIES_MODIFIED'); - } elseif ((REQUEST_ISSET_POST(('remove'))) && (REQUEST_ISSET_POST(('id')))) { + $message = getMessage('ADMIN_COUNTRIES_MODIFIED'); + } elseif ((REQUEST_ISSET_POST('remove')) && (REQUEST_ISSET_POST(('id')))) { // Remove $IDs = implode(",", array_keys(REQUEST_POST('id'))); ADD_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_countries` WHERE id IN (".$IDs.") LIMIT ".count(REQUEST_POST('id')).""); // Create message - $MSG = getMessage('ADMIN_COUNTRIES_REMOVED'); + $message = getMessage('ADMIN_COUNTRIES_REMOVED'); } - if ((!empty($MSG)) && (COUNT_SQLS() > 0)) { + if ((!empty($message)) && (COUNT_SQLS() > 0)) { // Run SQL commands runFilterChain('run_sqls'); // Display message - LOAD_TEMPLATE("admin_settings_saved", false, $MSG); + LOAD_TEMPLATE("admin_settings_saved", false, $message); } // Load currenty setup country codes to list