'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'))) { 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 = getMessage('ADMIN_COUNTRY_EDIT_NOW'); $title = getMessage('ADMIN_COUNTRY_EDIT_TITLE'); $reset = ' *'; } else { // Delete template $row = 'admin_list_country_del_row'; $post = 'remove'; $class = 'admin_delete'; $submit = getMessage('ADMIN_COUNTRY_DELETE_NOW'); $title = getMessage('ADMIN_COUNTRY_DELETE_TITLE'); $reset = ''; } // Edit all selected country codes $OUT = ''; $SW = 2; foreach (REQUEST_POST('id') as $id => $status) { // Load data from DB $result = SQL_QUERY_ESC("SELECT code, descr FROM `{!_MYSQL_PREFIX!}_countries` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { // Load data list($code, $descr) = SQL_FETCHROW($result); SQL_FREERESULT($result); // Prepare data, load row template and switch colors $content = array( 'id' => $id, 'code' => $code, 'descr' => $descr, 'sw' => $SW, ); if ($post == 'modify') { // Generate default selection in edit-mode $content['status'] = generateOptionList('/ARRAY/', array('Y', 'N'), array(getMessage('YES'), getMessage('NO')), $status); } else { // Only display status when in delete-mode $content['status'] = translateYesNo($status); } // Insert row template and switch color $OUT .= LOAD_TEMPLATE($row, true, $content); $SW = 3 - $SW; } } define('__COUNTRY_ROWS' , $OUT); define('__COUNTRY_MODE' , $post); define('__COUNTRY_CLASS' , $class); define('__COUNTRY_SUBMIT', $submit); define('__COUNTRY_TITLE' , $title); define('__COUNTRY_RESET' , $reset); // Load main template LOAD_TEMPLATE('admin_list_country_form'); } } else { // Shall we modify / remove entries now? $message = ''; INIT_SQLS(); if ((REQUEST_ISSET_POST(('modify'))) && (REQUEST_ISSET_POST('id'))) { // Modify foreach (REQUEST_POST('id') as $id => $sel) { ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_countries` SET `code`='".REQUEST_POST('code', $id)."', `descr`='".REQUEST_POST('descr', $id)."', `is_active`='".REQUEST_POST('is_active', $id)."' WHERE `id`='".$id."' LIMIT 1"); } // Create message $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 $message = getMessage('ADMIN_COUNTRIES_REMOVED'); } if ((!empty($message)) && (COUNT_SQLS() > 0)) { // Run SQL commands runFilterChain('run_sqls'); // Display message LOAD_TEMPLATE('admin_settings_saved', false, $message); } // Load currenty setup country codes to list $result = SQL_QUERY('SELECT id, code, descr, is_active FROM `{!_MYSQL_PREFIX!}_countries` ORDER BY code', __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // List all countries $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Prepare array for the template // @TODO Rewritings: name->descr,status->is_active in template $content = array( 'id' => $content['id'], 'code' => $content['code'], 'name' => $content['descr'], 'active' => translateYesNo($content['is_active']), 'sw' => $SW, 'status' => $content['is_active'], ); // Load row template and switch colors $OUT .= LOAD_TEMPLATE('admin_list_country_row', true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); } else { // No code setup so far (not possible by this software! 'DE' for 'Deutschland' is default $OUT = LOAD_TEMPLATE('admin_list_country_no_row', true); } // Add list to constant for the template define('__COUNTRY_ROWS', $OUT); // Include add template define('__ADD_COUNTRY_FORM', LOAD_TEMPLATE('admin_add_country', true)); // Load main template LOAD_TEMPLATE('admin_list_country'); } // ?>