X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_email.php;h=f551ef47b7591c74e7b59193e56a1fa6505a87ab;hb=27c276d9cf0536b962ca0f8a8fdd5fd7e1115754;hp=23ac9fe670b2811891d12c9017006ae24e07032c;hpb=5dfaf0ed80b30f53574a8866858d3e7cf05ce325;p=mailer.git diff --git a/inc/modules/admin/what-config_email.php b/inc/modules/admin/what-config_email.php index 23ac9fe670..f551ef47b7 100644 --- a/inc/modules/admin/what-config_email.php +++ b/inc/modules/admin/what-config_email.php @@ -1,192 +1,3 @@ ".MAX_VALUE_SAVED.""; - } - else - { - // Free memory - SQL_FREERESULT($result); - - // Value does alread exists! - $content = "".MAX_VALUE_ALREADY.""; - } - - // Display message - LOAD_TEMPLATE("admin_settings_saved", false, $content); -} - elseif ((isset($_POST['ok'])) && (isset($_GET['do']))) -{ - // Change or delete entries... - $TEXT = ""; - foreach ($_POST['id'] as $id=>$value) - { - // Secure ID - $id = bigintval($id); - - switch ($_GET['do']) - { - case "edit": // Change entries - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_max_receive SET value='%s', comment='%s' WHERE id=%d LIMIT 1", - array(bigintval($_POST['val'][$id]), $_POST['comm'][$id], $id),__FILE__, __LINE__); - $TEXT = MRECEIVE_SAVED; - break; - - case "del": - $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d LIMIT 1", - array($id), __FILE__, __LINE__); - $TEXT = MRECEIVE_DELETED; - break; - } - } - if (isset($TEXT)) - { - // Display message - LOAD_TEMPLATE("admin_settings_saved", false, $TEXT); - } -} - elseif ((isset($_POST['del'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0])))) -{ - // Delete entries - $SW = 2; $OUT = ""; - foreach ($_POST['sel'] as $id=>$value) - { - // Load data - $result = SQL_QUERY_ESC("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d 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 .= LOAD_TEMPLATE("admin_config_email_del_row", true, $content); - $SW = 3 - $SW; - } - define('__ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_config_email_del"); -} - elseif ((isset($_POST['edit'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0])))) -{ - // Edit entries - $SW = 2; $OUT = ""; - foreach ($_POST['sel'] as $id=>$value) - { - // Load data - $result = SQL_QUERY_ESC("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d 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 .= LOAD_TEMPLATE("admin_config_email_edit_row", true, $content); - $SW = 3 - $SW; - } - define('__ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_config_email_edit"); -} - else -{ - $result = SQL_QUERY("SELECT id, value, comment FROM "._MYSQL_PREFIX."_max_receive ORDER BY value", __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) - { - // List already existing entries for editing - $SW = 2; $OUT = ""; - while (list($id, $value, $comment) = SQL_FETCHROW($result)) - { - // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'id' => $id, - 'value' => $value, - 'comment' => $comment, - ); - - // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_config_email_row", true, $content); - $SW = 3 - $SW; - } - - // Free memory - SQL_FREERESULT($result); - define('__ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_config_email"); - } - - // Display form - LOAD_TEMPLATE("admin_add_max"); -} -CLOSE_TABLE(); -// +// @DEPRECATED ?>