]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_email.php
Changed all admin getter, closed internal TODOs:
[mailer.git] / inc / modules / admin / what-config_email.php
index 1383d4e54a01a597f5a9037f075e220f5c24add9..f72905d1bcb0278c8c4dc76be30351470a6cab3d 100644 (file)
@@ -56,10 +56,10 @@ if (isPostRequestParameterSet(('add_max'))) {
                // Add this value (including comment)
                SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_max_receive` (value, comment) VALUES ('%s','%s')",
                array(bigintval(postRequestParameter('max')), postRequestParameter('comment')),__FILE__, __LINE__);
-               $content = '{--MAX_VALUE_SAVED--}';
+               $content = '{--ADMIN_MAX_VALUE_SAVED--}';
        } else {
                // Value does alread exists!
-               $content = '<span class="admin_failed">{--MAX_VALUE_ALREADY--}</span>';
+               $content = '<span class="admin_failed">{--ADMIN_MAX_VALUE_ALREADY--}</span>';
        }
 
        // Free memory
@@ -103,18 +103,13 @@ if (isPostRequestParameterSet(('add_max'))) {
        $OUT = ''; $SW = 2;
        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,
-               );
+               // Add color switch
+               $content['sw'] = $SW;
 
                // Load row template and switch color
                $OUT .= loadTemplate('admin_config_email_del_row', true, $content);
@@ -129,18 +124,13 @@ if (isPostRequestParameterSet(('add_max'))) {
        $OUT = ''; $SW = 2;
        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,
-               );
+               // Add color switch
+               $content['sw'] = $SW;
 
                // Load row template and switch color
                $OUT .= loadTemplate('admin_config_email_edit_row', true, $content);