X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_email.php;h=f551ef47b7591c74e7b59193e56a1fa6505a87ab;hb=27c276d9cf0536b962ca0f8a8fdd5fd7e1115754;hp=edd6953f53035b6b57dee9fd4032a08861f01b51;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2;p=mailer.git diff --git a/inc/modules/admin/what-config_email.php b/inc/modules/admin/what-config_email.php index edd6953f53..f551ef47b7 100644 --- a/inc/modules/admin/what-config_email.php +++ b/inc/modules/admin/what-config_email.php @@ -1,157 +1,3 @@ {--ADMIN_MAX_VALUE_ALREADY--}'; - } - - // Free memory - SQL_FREERESULT($result); - - // Display message - loadTemplate('admin_settings_saved', false, $content); -} elseif ((isFormSent()) && (isGetRequestParameterSet('do'))) { - // Change or delete entries... - $TEXT = ''; - foreach (postRequestParameter('id') as $id => $value) { - // Secure id - $id = bigintval($id); - - 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(postRequestParameter('val', $id)), - postRequestParameter('comm', $id), - $id - ),__FILE__, __LINE__); - $TEXT = '{--ADMIN_MAX_RECEIVE_SAVED--}'; - break; - - case 'delete': - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1", - array($id), __FILE__, __LINE__); - $TEXT = '{--ADMIN_MAX_RECEIVE_DELETED--}'; - break; - } - } - - if (isset($TEXT)) { - // Display message - loadTemplate('admin_settings_saved', false, $TEXT); - } // END - if -} elseif ((isFormSent('delete')) && (ifPostContainsSelections())) { - // Delete entries - $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", - array(bigintval($id)), __FILE__, __LINE__); - $content = SQL_FETCHARRAY($result); - SQL_FREERESULT($result); - - // Load row template and switch color - $OUT .= loadTemplate('admin_config_email_del_row', true, $content); - } // END - foreach - $content['rows'] = $OUT; - - // Load main template - loadTemplate('admin_config_email_del', false, $content); -} elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { - // Edit entries - $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", - array(bigintval($id)), __FILE__, __LINE__); - $content = SQL_FETCHARRAY($result); - SQL_FREERESULT($result); - - // Load row template and switch color - $OUT .= loadTemplate('admin_config_email_edit_row', true, $content); - } // END - foreach - $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_HASZERONUMS($result)) { - // List already existing entries for editing - $OUT = ''; - while ($content = SQL_FETCHARRAY($result)) { - // Load row template and switch color - $OUT .= loadTemplate('admin_config_email_row', true, $content); - } // 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 ?>