]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-refbanner.php
Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / modules / admin / what-refbanner.php
index e8754f6ba2eb3b28ab48ec4d24dd0344f1914e55..ae676687e56ee6381b12944488d057bc932e428e 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -49,19 +49,17 @@ if ((!isPostRequestElementSet('url')) || (!isPostRequestElementSet('alternate'))
 } // END - if
 
 if (isFormSent()) {
-       // Fix older calls from add-new-banner-form
-       if (!isGetRequestElementSet('mode')) setGetRequestElement('mode', 'add');
        $sql = '';
-       switch (getRequestElement('mode')) {
+       switch (getRequestElement('do')) {
                case 'add':
                        // Check if banner is already added
-                       $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `url`='%s' LIMIT 1",
+                       $result = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `url`='%s' LIMIT 1",
                                array(postRequestElement('url')), __FILE__, __LINE__);
 
                        // Was the banner found?
-                       if (SQL_HASZERONUMS($result)) {
+                       if (ifSqlHasZeroNumRows($result)) {
                                // Add banner
-                               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_refbanner` (`url`,`alternate`,`visible`)
+                               sqlQueryEscaped("INSERT INTO `{?_MYSQL_PREFIX?}_refbanner` (`url`, `alternate`, `visible`)
 VALUES ('%s','%s','%s')",
                                        array(
                                                postRequestElement('url'),
@@ -71,7 +69,7 @@ VALUES ('%s','%s','%s')",
                        } // END - if
 
                        // Free memory
-                       SQL_FREERESULT($result);
+                       sqlFreeResult($result);
                        break;
 
                case 'edit': // Update banner
@@ -80,7 +78,7 @@ VALUES ('%s','%s','%s')",
                                $id = bigintval($id);
 
                                // Update entry
-                               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refbanner` SET `url`='%s',`alternate`='%s',`visible`='%s' WHERE `id`=%s LIMIT 1",
+                               sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_refbanner` SET `url`='%s',`alternate`='%s',`visible`='%s' WHERE `id`=%s LIMIT 1",
                                        array(
                                                postRequestElement('url', $id),
                                                postRequestElement('alternate', $id),
@@ -92,7 +90,7 @@ VALUES ('%s','%s','%s')",
        } // END - switch
 
        // Check if we have saved (updated)
-       if (!SQL_HASZEROAFFECTED()) {
+       if (!ifSqlHasZeroAffectedRows()) {
                // Updated!
                $content = '{--SETTINGS_SAVED--}';
        } else {
@@ -107,46 +105,46 @@ VALUES ('%s','%s','%s')",
        $OUT = '';
        foreach (postRequestElement('sel') as $id => $sel) {
                // Load data
-               $result = SQL_QUERY_ESC("SELECT `id`,`url`,`alternate`,`visible` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1",
+               $result = sqlQueryEscaped("SELECT `id`, `url`, `alternate`, `visible` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1",
                        array(bigintval($id)), __FILE__, __LINE__);
-               $content = SQL_FETCHARRAY($result);
-               SQL_FREERESULT($result);
+               $content = sqlFetchArray($result);
+               sqlFreeResult($result);
 
                // Preapre data for the row
                $content['visible'] = addSelectionBox('yn', $content['visible'], 'visible');
 
                // Load row template and switch color
-               $OUT .= loadTemplate('admin_edit_refbanner_row', true, $content);
+               $OUT .= loadTemplate('admin_edit_refbanner_row', TRUE, $content);
        } // END - foreach
 
        // Load main template
-       loadTemplate('admin_edit_refbanner', false, $OUT);
+       loadTemplate('admin_edit_refbanner', FALSE, $OUT);
 } else {
        if ((ifPostContainsSelections()) && (isFormSent('delete'))) {
                // Delete banner
                foreach (postRequestElement('sel') as $id => $sel) {
-                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1",
+                       sqlQueryEscaped("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1",
                        array(bigintval($id)), __FILE__, __LINE__);
                } // END - foreach
        } // END - if
 
        // Referral levels
-       $result = SQL_QUERY('SELECT `id`,`url`,`alternate`,`visible`,`counter`,`clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `url` ASC', __FILE__, __LINE__);
+       $result = sqlQuery('SELECT `id`, `url`, `alternate`, `visible`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `url` ASC', __FILE__, __LINE__);
 
        // Entries found?
-       if (!SQL_HASZERONUMS($result)) {
+       if (!ifSqlHasZeroNumRows($result)) {
                // Make referral banner editable and deletable
                $OUT = '';
-               while ($content = SQL_FETCHARRAY($result)) {
+               while ($content = sqlFetchArray($result)) {
                        // Load row template and switch color
-                       $OUT .= loadTemplate('admin_list_refbanner_row', true, $content);
+                       $OUT .= loadTemplate('admin_list_refbanner_row', TRUE, $content);
                } // END - while
 
                // Free memory
-               SQL_FREERESULT($result);
+               sqlFreeResult($result);
 
                // Load main template
-               loadTemplate('admin_list_refbanner', false, $OUT);
+               loadTemplate('admin_list_refbanner', FALSE, $OUT);
        } // END - if
 
        // Form for adding new referral levels