X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_email.php;h=f551ef47b7591c74e7b59193e56a1fa6505a87ab;hp=1a2fc7f55fbd8726e571bceea9b5b18d0bf19cb4;hb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60 diff --git a/inc/modules/admin/what-config_email.php b/inc/modules/admin/what-config_email.php index 1a2fc7f55f..f551ef47b7 100644 --- a/inc/modules/admin/what-config_email.php +++ b/inc/modules/admin/what-config_email.php @@ -1,180 +1,3 @@ {--MAX_VALUE_ALREADY--}"; - } - - // Free memory - SQL_FREERESULT($result); - - // Display message - loadTemplate('admin_settings_saved', false, $content); -} elseif ((isFormSent()) && (isGetRequestElementSet('do'))) { - // Change or delete entries... - $TEXT = ''; - foreach (postRequestElement('id') as $id => $value) { - // Secure id - $id = bigintval($id); - - switch (getRequestElement('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), - $id - ),__FILE__, __LINE__); - $TEXT = getMessage('MRECEIVE_SAVED'); - break; - - case 'del': - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", - array($id), __FILE__, __LINE__); - $TEXT = getMessage('MRECEIVE_DELETED'); - break; - } - } - - if (isset($TEXT)) { - // Display message - loadTemplate('admin_settings_saved', false, $TEXT); - } // END - if -} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0)) { - // Delete entries - $OUT = ''; $SW = 2; - foreach (postRequestElement('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); - 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; - } - $content['rows'] = $OUT; - - // Load main template - loadTemplate('admin_config_email_del', false, $content); -} elseif ((isPostRequestElementSet('edit')) && (countPostSelection() > 0)) { - // Edit entries - $OUT = ''; $SW = 2; - foreach (postRequestElement('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); - 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; - } - $content['rows'] = $OUT; - - // Load main template - loadTemplate('admin_config_email_edit', false, $content); -} else { - $result = SQL_QUERY("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC", - __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) { - // List already existing entries for editing - $OUT = ''; $SW = 2; - 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 - SQL_FREERESULT($result); - $content['rows'] = $OUT; - - // Load main template - loadTemplate('admin_config_email', false, $content); - } // END - if - - // Display form - loadTemplate('admin_add_max'); -} - -// [EOF] +// @DEPRECATED ?>