X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mods.php;h=8d396498c1a6e1591df9d660d280869ac7731382;hp=5a1e816364b537833c607720475af1736ffc3b42;hb=d0d885e08aba45b77818d49bcf40396bf788c386;hpb=89c00e43d2ce1dd1afe11c2c8485307342805f97 diff --git a/inc/modules/admin/what-config_mods.php b/inc/modules/admin/what-config_mods.php index 5a1e816364..8d396498c1 100644 --- a/inc/modules/admin/what-config_mods.php +++ b/inc/modules/admin/what-config_mods.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Modul-Konfiguration * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * 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 * @@ -32,30 +37,24 @@ ************************************************************************/ // 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 (isset($_POST['edit'])) -{ +if (isPostRequestElementSet('edit')) { // Check if at least one module is selected - $SEL = SELECTION_COUNT($_POST['sel']); - if ($SEL > 0) - { + if (countPostSelection() > 0) { // Output header - $OUT = ""; $SW = 2; + $OUT = ''; $SW = 2; // Edit selected modules - foreach ($_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); @@ -65,86 +64,88 @@ if (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"); - } - else - { + loadTemplate('admin_mods_edit', false, $OUT); + } else { // Nothing selected - LOAD_TEMPLATE("admin_settings_saved", false, MODS_NOTHING_SELECTED); - OUTPUT_HTML("
"); + loadTemplate('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED')); // Remove maybe confusing data - unset($_POST['edit']); - unset($_POST['change']); + unsetPostRequestElement('edit'); + unsetPostRequestElement('change'); } -} - elseif (isset($_POST['change'])) -{ +} elseif (isPostRequestElementSet('change')) { + // Init SQLs + initSqls(); + // Change modules - foreach ($_POST['sel'] as $id => $sel) - { - // Secure ID number + foreach (postRequestElement('sel') as $id => $sel) { + // Secure id number $id = bigintval($id); // Update module - 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($_POST['title'][$id], $_POST['locked'][$id], $_POST['hidden'][$id], $_POST['admin'][$id], $_POST['member'][$id], $id), __FILE__, __LINE__); + 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 ($cacheInstance->loadCacheFile("mod_reg")) $cacheInstance->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, MODS_CHANGED); - OUTPUT_HTML("
"); + loadTemplate('admin_settings_saved', false, getMessage('MODS_CHANGED')); } -if ($SEL == 0) -{ +if (countPostSelection() == '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, clicks -FROM "._MYSQL_PREFIX."_mod_reg -ORDER BY module", __FILE__, __LINE__); - $OUT = ""; $SW = 2; - while (list($id, $mod, $locked, $hidden, $admin, $title, $mem) = SQL_FETCHROW($result)) - { + $result = SQL_QUERY('SELECT id, module, locked, hidden, admin_only, title, mem_only +FROM `{?_MYSQL_PREFIX?}_mod_reg` +ORDER BY module', __FILE__, __LINE__); + $OUT = ''; $SW = 2; + while ($content = SQL_FETCHARRAY($result)) { // Reset title to --- if it is NULL - if (empty($title)) $title = "---"; - if (($mod == "index") || ($mod == "login")) - { + if (empty($content['title'])) $content['title'] = '---'; + if (($content['module'] == 'index') || ($content['module'] == 'login')) { // Add link to detail statistics - $mod = "".$mod.""; + $content['module'] = "".$content['module'].""; } // Prepare array for the template + // @TODO Rewritings: mod->module in template $content = array( 'sw' => $SW, - 'id' => $id, - 'mod' => $mod, - 'title' => $title, - 'locked' => TRANSLATE_YESNO($locked), - 'hidden' => TRANSLATE_YESNO($hidden), - 'admin' => TRANSLATE_YESNO($admin), - 'mem' => TRANSLATE_YESNO($mem), + 'id' => $content['id'], + 'mod' => $content['module'], + 'title' => $content['title'], + '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; @@ -152,11 +153,10 @@ ORDER BY module", __FILE__, __LINE__); // Free memory SQL_FREERESULT($result); - define('__MODS_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_mods_list"); + loadTemplate('admin_list_mods', false, $OUT); } -// +// [EOF] ?>