X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_email.php;h=ce0007636b34422a5d7312f477f5c9aa895a66c4;hb=c28537699175c4cb71a92e720541e9ce1381c8a3;hp=9d84ac91df1ff7983c76c8a9d982b08cb0bff140;hpb=f2c43b993e03f90202044a0c2ea0abd0866ec6ee;p=mailer.git diff --git a/inc/modules/admin/what-config_email.php b/inc/modules/admin/what-config_email.php index 9d84ac91df..ce0007636b 100644 --- a/inc/modules/admin/what-config_email.php +++ b/inc/modules/admin/what-config_email.php @@ -1,7 +1,7 @@ {--MAX_VALUE_ALREADY--}"; + $content = '{--ADMIN_MAX_VALUE_ALREADY--}'; } // Free memory SQL_FREERESULT($result); // Display message - loadTemplate('admin_settings_saved', false, $content); -} elseif ((isFormSent()) && (isGetRequestElementSet('do'))) { + displayMessage($content); +} elseif ((isFormSent()) && (isGetRequestParameterSet('do'))) { // Change or delete entries... $TEXT = ''; - foreach (postRequestElement('id') as $id => $value) { + foreach (postRequestParameter('id') as $id => $value) { // Secure id $id = bigintval($id); - switch (getRequestElement('do')) + switch (getRequestParameter('do')) { case 'edit': // Change entries SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_max_receive` SET value='%s', comment='%s' WHERE `id`=%s LIMIT 1", array( - bigintval(postRequestElement('val', $id)), - postRequestElement('comm', $id), + bigintval(postRequestParameter('val', $id)), + postRequestParameter('comm', $id), $id ),__FILE__, __LINE__); - $TEXT = getMessage('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 = getMessage('MRECEIVE_DELETED'); + $TEXT = '{--ADMIN_MAX_RECEIVE_DELETED--}'; break; } } if (isset($TEXT)) { // Display message - loadTemplate('admin_settings_saved', false, $TEXT); + displayMessage($TEXT); } // END - if -} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0)) { +} elseif ((isFormSent('delete')) && (ifPostContainsSelections())) { // Delete entries - $OUT = ''; $SW = 2; - foreach (postRequestElement('sel') as $id => $value) { + $OUT = ''; + foreach (postRequestParameter('sel') as $id => $value) { // Load data - $result = SQL_QUERY_ESC("SELECT value, comment FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - list($value, $comment) = SQL_FETCHROW($result); + $result = SQL_QUERY_ESC("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); - // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'value' => $value, - 'comment' => $comment, - ); - // 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 ((isPostRequestElementSet('edit')) && (countPostSelection() > 0)) { +} elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries - $OUT = ''; $SW = 2; - foreach (postRequestElement('sel') as $id => $value) { + $OUT = ''; + foreach (postRequestParameter('sel') as $id => $value) { // Load data - $result = SQL_QUERY_ESC("SELECT value, comment FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - list($value, $comment) = SQL_FETCHROW($result); + $result = SQL_QUERY_ESC("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); - // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'value' => $value, - 'comment' => $comment, - ); - // 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 @@ -152,16 +133,12 @@ if (isPostRequestElementSet(('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