X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_email.php;h=ce0007636b34422a5d7312f477f5c9aa895a66c4;hp=f72905d1bcb0278c8c4dc76be30351470a6cab3d;hb=db0c6702086eea2c44d0aae1702dc2e77a0afc4e;hpb=29385a0483bbcbbe940a32a49d488b1d5add15c5 diff --git a/inc/modules/admin/what-config_email.php b/inc/modules/admin/what-config_email.php index f72905d1bc..ce0007636b 100644 --- a/inc/modules/admin/what-config_email.php +++ b/inc/modules/admin/what-config_email.php @@ -14,11 +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, 2010 by Mailer Developer Team * + * 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 * @@ -40,33 +38,33 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { die(); -} +} // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Remove empty array index -if (!isPostRequestParameterSet(('max'))) unsetPostRequestParameter(('add_max')); +if (!isPostRequestParameterSet('max')) unsetPostRequestParameter('add_max'); -if (isPostRequestParameterSet(('add_max'))) { +if (isPostRequestParameterSet('add_max')) { // Save all settings $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE value='%s' LIMIT 1", array(bigintval(postRequestParameter('max'))), __FILE__, __LINE__); if (SQL_HASZERONUMS($result)) { // Add this value (including comment) - SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_max_receive` (value, comment) VALUES ('%s','%s')", + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_max_receive` (`value`, `comment`) VALUES ('%s','%s')", array(bigintval(postRequestParameter('max')), postRequestParameter('comment')),__FILE__, __LINE__); $content = '{--ADMIN_MAX_VALUE_SAVED--}'; } else { // Value does alread exists! - $content = '{--ADMIN_MAX_VALUE_ALREADY--}'; + $content = '{--ADMIN_MAX_VALUE_ALREADY--}'; } // Free memory SQL_FREERESULT($result); // Display message - loadTemplate('admin_settings_saved', false, $content); + displayMessage($content); } elseif ((isFormSent()) && (isGetRequestParameterSet('do'))) { // Change or delete entries... $TEXT = ''; @@ -83,24 +81,24 @@ if (isPostRequestParameterSet(('add_max'))) { postRequestParameter('comm', $id), $id ),__FILE__, __LINE__); - $TEXT = '{--MRECEIVE_SAVED--}'; + $TEXT = '{--ADMIN_MAX_RECEIVE_SAVED--}'; break; - case 'del': + case 'delete': SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", array($id), __FILE__, __LINE__); - $TEXT = '{--MRECEIVE_DELETED--}'; + $TEXT = '{--ADMIN_MAX_RECEIVE_DELETED--}'; break; } } if (isset($TEXT)) { // Display message - loadTemplate('admin_settings_saved', false, $TEXT); + displayMessage($TEXT); } // END - if -} elseif ((isFormSent('del')) && (countPostSelection() > 0)) { +} elseif ((isFormSent('delete')) && (ifPostContainsSelections())) { // Delete entries - $OUT = ''; $SW = 2; + $OUT = ''; foreach (postRequestParameter('sel') as $id => $value) { // Load data $result = SQL_QUERY_ESC("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", @@ -108,20 +106,16 @@ if (isPostRequestParameterSet(('add_max'))) { $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); - // Add color switch - $content['sw'] = $SW; - // Load row template and switch color $OUT .= loadTemplate('admin_config_email_del_row', true, $content); - $SW = 3 - $SW; - } + } // END - foreach $content['rows'] = $OUT; // Load main template loadTemplate('admin_config_email_del', false, $content); -} elseif ((isFormSent('edit')) && (countPostSelection() > 0)) { +} elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries - $OUT = ''; $SW = 2; + $OUT = ''; foreach (postRequestParameter('sel') as $id => $value) { // Load data $result = SQL_QUERY_ESC("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", @@ -129,13 +123,9 @@ if (isPostRequestParameterSet(('add_max'))) { $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); - // Add color switch - $content['sw'] = $SW; - // Load row template and switch color $OUT .= loadTemplate('admin_config_email_edit_row', true, $content); - $SW = 3 - $SW; - } + } // END - foreach $content['rows'] = $OUT; // Load main template @@ -143,16 +133,12 @@ if (isPostRequestParameterSet(('add_max'))) { } else { $result = SQL_QUERY("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC", __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) { + if (!SQL_HASZERONUMS($result)) { // List already existing entries for editing - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { - // Prepare data for the row template - $content['sw'] = $SW; - // Load row template and switch color $OUT .= loadTemplate('admin_config_email_row', true, $content); - $SW = 3 - $SW; } // END - while // Free memory