X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-refbanner.php;h=ae676687e56ee6381b12944488d057bc932e428e;hp=1a6d1dd7e4ced5180d400160c7fbeefae94ebfb3;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hpb=ee3a0b42f93de7676fca549c866c1c2e6f3f0576 diff --git a/inc/modules/admin/what-refbanner.php b/inc/modules/admin/what-refbanner.php index 1a6d1dd7e4..ae676687e5 100644 --- a/inc/modules/admin/what-refbanner.php +++ b/inc/modules/admin/what-refbanner.php @@ -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 * @@ -53,13 +53,13 @@ if (isFormSent()) { 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'), @@ -69,7 +69,7 @@ VALUES ('%s','%s','%s')", } // END - if // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); break; case 'edit': // Update banner @@ -78,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), @@ -90,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 { @@ -105,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