X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mods.php;h=8d6c362fecadc053cdb29a21cfdb5040a8b4349d;hb=854fcac4ae5fe26e28e9d4d7b8361f2ab455aeb1;hp=bf26f1d6f93b74ee3f992178fb752172348462b5;hpb=a090e351c49fe021fb3064325694da03402332e0;p=mailer.git diff --git a/inc/modules/admin/what-config_mods.php b/inc/modules/admin/what-config_mods.php index bf26f1d6f9..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,27 +37,26 @@ ************************************************************************/ // 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 = SELECTION_COUNT(REQUEST_POST('sel')); + $SEL = countPostSelection(); if ($SEL > 0) { // Output header $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", - array(bigintval($id)), __FILE__, __LINE__); + $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,44 +66,43 @@ 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", + 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( - REQUEST_POST('title', $id), - REQUEST_POST('locked', $id), - REQUEST_POST('hidden', $id), - REQUEST_POST('admin', $id), - REQUEST_POST('member', $id), + postRequestElement('title', $id), + postRequestElement('locked', $id), + postRequestElement('hidden', $id), + postRequestElement('admin', $id), + postRequestElement('member', $id), $id ), __FILE__, __LINE__, false)); } @@ -113,18 +111,18 @@ if (REQUEST_ISSET_POST('edit')) { 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)) { @@ -132,7 +130,7 @@ 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'].""; } // Prepare array for the template @@ -142,14 +140,14 @@ ORDER BY module', __FILE__, __LINE__); 'id' => $content['id'], 'mod' => $content['module'], 'title' => $content['title'], - 'locked' => TRANSLATE_YESNO($content['locked']), - 'hidden' => TRANSLATE_YESNO($content['hidden']), - 'admin' => TRANSLATE_YESNO($content['admin_only']), - 'mem' => TRANSLATE_YESNO($content['mem_only']), + 'locked' => translateYesNo($content['locked']), + 'hidden' => translateYesNo($content['hidden']), + 'admin' => translateYesNo($content['admin_only']), + 'mem' => translateYesNo($content['mem_only']), ); // 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] ?>