X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_register.php;h=dec1610b6d1daaec9813696350e45a593a768c91;hp=2249983a5666e1ded68cf93e08f46d911422288b;hb=0f3a135204757cc8750262871c8e62c42300acb4;hpb=57227d33e870ec5cd271209c4a978a52b45c2dd6 diff --git a/inc/modules/admin/what-config_register.php b/inc/modules/admin/what-config_register.php index 2249983a56..dec1610b6d 100644 --- a/inc/modules/admin/what-config_register.php +++ b/inc/modules/admin/what-config_register.php @@ -14,10 +14,9 @@ * $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 - 2009 by Roland Haeder * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,43 +38,43 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { die(); -} +} // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Do we want to save changes? if (isFormSent()) { + // Begin counting + $count = 0; + + // Update all entries foreach (postRequestParameter('sel') as $id => $value) { - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_must_register` SET field_required='%s' WHERE `id`=%s AND field_required != '%s' LIMIT 1", - array($value, bigintval($id), $value),__FILE__, __LINE__); - } - loadTemplate('admin_settings_saved', false, getMessage('REGISTER_ADMIN_CHANGES_SAVED')); -} + // Update database + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_must_register` SET `field_required`='%s' WHERE `id`=%s AND `field_required` != '%s' LIMIT 1", + array($value, bigintval($id), $value),__FILE__, __LINE__); + + // Get affected rows + $count += SQL_AFFECTEDROWS(); + } // END - foreach + + // Output message for updated entries + displayMessage('{%message,ADMIN_REGISTER_CHANGES_SAVED=' . $count . '%}'); +} // END - if // List all register values -$result = SQL_QUERY("SELECT id, field_name, field_required FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id`", __FILE__, __LINE__); -$OUT = ''; $SW = 2; +$result = SQL_QUERY("SELECT `id`,`field_name`,`field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC", __FILE__, __LINE__); +$OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Get language string - $content['field_name'] = getMessage(strtoupper($content['field_name'])); + $content['field_name'] = '{--' . strtoupper($content['field_name']) . '--}'; // Add more data - $content['sw'] = $SW; - $content['selection'] = addSelectionBox('yn', $content['field_required'], "sel[".$content['id']."]"); + $content['selection'] = addSelectionBox('yn', $content['field_required'], 'sel[' . $content['id'] . ']'); // @TODO Move this HTML code into a template - $OUT .= " - ".$content['id']." -   ".$content['field_name']." - - ".$content['selection']." - -\n"; - - // Switch color - $SW = 3 - $SW; -} + $OUT .= loadTemplate('admin_config_register_row', true, $content); +} // END - while // Free memory SQL_FREERESULT($result);