X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mods.php;h=a846a3557b8f4df1775cb4338b451203aac4636a;hp=6e3b2c55606e99d4fe13ea496d66295fcd8bfbf5;hb=57227d33e870ec5cd271209c4a978a52b45c2dd6;hpb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e diff --git a/inc/modules/admin/what-config_mods.php b/inc/modules/admin/what-config_mods.php index 6e3b2c5560..a846a3557b 100644 --- a/inc/modules/admin/what-config_mods.php +++ b/inc/modules/admin/what-config_mods.php @@ -44,35 +44,40 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { // Add description as navigation point addMenuDescription('admin', __FILE__); -if (isPostRequestElementSet('edit')) { +if (isPostRequestParameterSet('edit')) { // Check if at least one module is selected if (countPostSelection() > 0) { // Output header $OUT = ''; $SW = 2; // Edit selected modules - foreach (postRequestElement('sel') as $id => $sel) { + foreach (postRequestParameter('sel') as $id => $sel) { // Load module data - $result = SQL_QUERY_ESC("SELECT module, title, locked, hidden, admin_only, mem_only FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `id`=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - list($mod, $title, $locked, $hidden, $admin, $mem) = SQL_FETCHROW($result); + // @TODO This can be moved into mysql-function.php, see checkModulePermissions() function + $result = SQL_QUERY_ESC("SELECT `module`, `title`, `locked`, `hidden`, `admin_only`, `mem_only` FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + + // Load data + $data = SQL_FETCHARRAY($result); + + // Free result SQL_FREERESULT($result); // Prepare array for the template $content = array( 'sw' => $SW, - 'mod' => $mod, + 'mod' => $data['module'], 'id' => $id, - 'title' => $title, - 'locked' => addSelectionBox('yn', $locked, 'locked', $id), - 'hidden' => addSelectionBox('yn', $hidden, 'hidden', $id), - 'admin' => addSelectionBox('yn', $admin , 'admin' , $id), - 'mem' => addSelectionBox('yn', $mem , 'member', $id), + 'title' => $data['title'], + 'locked' => addSelectionBox('yn', $data['locked'] , 'locked', $id), + 'hidden' => addSelectionBox('yn', $data['hidden'] , 'hidden', $id), + 'admin' => addSelectionBox('yn', $data['admin_only'], 'admin' , $id), + 'mem' => addSelectionBox('yn', $data['mem_only'] , 'member', $id), ); // Load row template $OUT .= loadTemplate('admin_mods_edit_row', true, $content); - } + } // END - foreach // Load main template loadTemplate('admin_mods_edit', false, $OUT); @@ -81,26 +86,26 @@ if (isPostRequestElementSet('edit')) { loadTemplate('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED')); // Remove maybe confusing data - unsetPostRequestElement('edit'); - unsetPostRequestElement('change'); + unsetPostRequestParameter('edit'); + unsetPostRequestParameter('change'); } -} elseif (isPostRequestElementSet('change')) { +} elseif (isPostRequestParameterSet('change')) { // Init SQLs initSqls(); // Change modules - foreach (postRequestElement('sel') as $id => $sel) { + foreach (postRequestParameter('sel') as $id => $sel) { // Secure id number $id = bigintval($id); // Update module addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `title`='%s', `locked`='%s', `hidden`='%s', `admin_only`='%s', `mem_only`='%s' WHERE `id`=%s LIMIT 1", array( - postRequestElement('title', $id), - postRequestElement('locked', $id), - postRequestElement('hidden', $id), - postRequestElement('admin', $id), - postRequestElement('member', $id), + postRequestParameter('title', $id), + postRequestParameter('locked', $id), + postRequestParameter('hidden', $id), + postRequestParameter('admin', $id), + postRequestParameter('member', $id), $id ), __FILE__, __LINE__, false)); } @@ -128,8 +133,8 @@ ORDER BY module', __FILE__, __LINE__); if (empty($content['title'])) $content['title'] = '---'; if (($content['module'] == 'index') || ($content['module'] == 'login')) { // Add link to detail statistics - $content['module'] = "".$content['module'].""; - } + $content['module'] = "" . $content['module'] . ""; + } // END - if // Prepare array for the template // @TODO Rewritings: mod->module in template