X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mods.php;h=8d6c362fecadc053cdb29a21cfdb5040a8b4349d;hp=2ff24a213a00bfb371b30c489f63fafcf31d1654;hb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;hpb=50b91687d7e7201f6c596a9ad40e8ff35c995074 diff --git a/inc/modules/admin/what-config_mods.php b/inc/modules/admin/what-config_mods.php index 2ff24a213a..8d6c362fec 100644 --- a/inc/modules/admin/what-config_mods.php +++ b/inc/modules/admin/what-config_mods.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,16 +37,15 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); } // Add description as navigation point -ADD_DESCR('admin', __FILE__); +addMenuDescription('admin', __FILE__); $SEL = 0; -if (REQUEST_ISSET_POST('edit')) { +if (isPostRequestElementSet('edit')) { // Check if at least one module is selected $SEL = countPostSelection(); if ($SEL > 0) { @@ -54,9 +53,9 @@ if (REQUEST_ISSET_POST('edit')) { $OUT = ''; $SW = 2; // Edit selected modules - foreach (REQUEST_POST('sel') as $id => $sel) { + foreach (postRequestElement('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", + $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); SQL_FREERESULT($result); @@ -67,64 +66,63 @@ if (REQUEST_ISSET_POST('edit')) { 'mod' => $mod, 'id' => $id, 'title' => $title, - 'locked' => ADD_SELECTION('yn', $locked, 'locked', $id), - 'hidden' => ADD_SELECTION('yn', $hidden, 'hidden', $id), - 'admin' => ADD_SELECTION('yn', $admin , 'admin' , $id), - 'mem' => ADD_SELECTION('yn', $mem , 'member', $id), + 'locked' => addSelectionBox('yn', $locked, 'locked', $id), + 'hidden' => addSelectionBox('yn', $hidden, 'hidden', $id), + 'admin' => addSelectionBox('yn', $admin , 'admin' , $id), + 'mem' => addSelectionBox('yn', $mem , 'member', $id), ); // Load row template - $OUT .= LOAD_TEMPLATE('admin_mods_edit_row', true, $content); + $OUT .= loadTemplate('admin_mods_edit_row', true, $content); } - define('__MODS_ROWS', $OUT); // Load main template - LOAD_TEMPLATE('admin_mods_edit'); + loadTemplate('admin_mods_edit', false, $OUT); } else { // Nothing selected - LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED')); + loadTemplate('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED')); // Remove maybe confusing data - REQUEST_UNSET_POST('edit'); - REQUEST_UNSET_POST('change'); + unsetPostRequestElement('edit'); + unsetPostRequestElement('change'); } -} elseif (REQUEST_ISSET_POST('change')) { +} elseif (isPostRequestElementSet('change')) { // Init SQLs - INIT_SQLS(); + initSqls(); // Change modules - foreach (REQUEST_POST('sel') as $id => $sel) { + foreach (postRequestElement('sel') as $id => $sel) { // Secure ID number $id = bigintval($id); // Update module - ADD_SQL(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( - REQUEST_POST('title', $id), - REQUEST_POST('locked', $id), - REQUEST_POST('hidden', $id), - REQUEST_POST('admin', $id), - REQUEST_POST('member', $id), - $id - ), __FILE__, __LINE__, false)); + 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), + $id + ), __FILE__, __LINE__, false)); } // Run all sqls runFilterChain('run_sqls'); // Remove cache file if version matches - if (GET_EXT_VERSION('cache') >= '0.1.2') { - if ($GLOBALS['cache_instance']->loadCacheFile('modreg')) $GLOBALS['cache_instance']->destroyCacheFile(); + if (getExtensionVersion('cache') >= '0.1.2') { + if ($GLOBALS['cache_instance']->loadCacheFile('modules')) $GLOBALS['cache_instance']->removeCacheFile(); } // END - if // Entries updated - LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MODS_CHANGED')); + loadTemplate('admin_settings_saved', false, getMessage('MODS_CHANGED')); } if ($SEL == 0) { // Load module data (We do not need to check if there's at least one...) $result = SQL_QUERY('SELECT id, module, locked, hidden, admin_only, title, mem_only -FROM `{!_MYSQL_PREFIX!}_mod_reg` +FROM `{?_MYSQL_PREFIX?}_mod_reg` ORDER BY module', __FILE__, __LINE__); $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { @@ -149,7 +147,7 @@ ORDER BY module', __FILE__, __LINE__); ); // Load row template - $OUT .= LOAD_TEMPLATE('admin_mods_list_row', true, $content); + $OUT .= loadTemplate('admin_list_mods_row', true, $content); // Switch colors $SW = 3 - $SW; @@ -158,12 +156,9 @@ ORDER BY module', __FILE__, __LINE__); // Free memory SQL_FREERESULT($result); - // @TODO Rewrite this constant - define('__MODS_ROWS', $OUT); - // Load main template - LOAD_TEMPLATE('admin_mods_list'); + loadTemplate('admin_list_mods', false, $OUT); } -// +// [EOF] ?>