X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-refbanner.php;h=4e241a0a70c82abc234d4dc6cb1bc922911ad33d;hp=abab32ca9bb617f7689dc028ce767a09e7e2ae22;hb=a226d81121cb96048b1ed85fd8584a87d435b0db;hpb=d0d885e08aba45b77818d49bcf40396bf788c386 diff --git a/inc/modules/admin/what-refbanner.php b/inc/modules/admin/what-refbanner.php index abab32ca9b..4e241a0a70 100644 --- a/inc/modules/admin/what-refbanner.php +++ b/inc/modules/admin/what-refbanner.php @@ -1,7 +1,7 @@ $sel) { + foreach (postRequestParameter('sel') as $id => $sel) { // Secure id $id = bigintval($id); // Update entry - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refbanner` SET url='%s', alternate='%s', `visible`='%s' WHERE `id`=%s LIMIT 1", - array( - postRequestElement('url', $id), - postRequestElement('alternate', $id), - postRequestElement('visible'), - $id - ), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refbanner` SET `url`='%s', `alternate`='%s', `visible`='%s' WHERE `id`=%s LIMIT 1", + array( + postRequestParameter('url', $id), + postRequestParameter('alternate', $id), + postRequestParameter('visible'), + $id + ), __FILE__, __LINE__); } break; - } + } // END - switch + // Check if we have saved (updated) if (SQL_AFFECTEDROWS() == 1) { - $content = getMessage('SETTINGS_SAVED'); + // Updated! + $content = '{--SETTINGS_SAVED--}'; } else { - $content = "{--SETTINGS_NOT_SAVED--}"; + // Nothing has been updated + $content = '{--SETTINGS_NOT_SAVED--}'; } + + // Display message loadTemplate('admin_settings_saved', false, $content); -} elseif ((countPostSelection() > 0) && (isPostRequestElementSet('edit'))) { +} elseif ((ifPostContainsSelections()) && (isFormSent('edit'))) { // Edit banner - $SW = 2; $OUT = ''; - foreach (postRequestElement('sel') as $id => $sel) { + $OUT = ''; + foreach (postRequestParameter('sel') as $id => $sel) { // Load data - $result = SQL_QUERY_ESC("SELECT url, alternate, visible FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - list($url, $alt, $vis) = SQL_FETCHROW($result); + $result = SQL_QUERY_ESC("SELECT `url`, `alternate`, `visible` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); // Preapre data for the row - $content = array( - 'sw' => $SW, - 'id' => $id, - 'url' => $url, - 'alt' => $alt, - 'vis' => addSelectionBox('yn', $vis , 'visible'), - ); + $content['visible'] = addSelectionBox('yn', $content['visible'], 'visible'); // Load row template and switch color $OUT .= loadTemplate('admin_refbanner_edit_row', true, $content); - $SW = 3 - $SW; - } + } // END - foreach // Load main template loadTemplate('admin_refbanner_edit', false, $OUT); } else { - if ((countPostSelection() > 0) && (isPostRequestElementSet('del'))) { + if ((ifPostContainsSelections()) && (isFormSent('del'))) { // Delete banner - foreach (postRequestElement('sel') as $id => $sel) { + foreach (postRequestParameter('sel') as $id => $sel) { SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); } // END - foreach } // END - if // Referal levels - $result = SQL_QUERY("SELECT id, url, alternate, visible, counter, clicks FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY url", __FILE__, __LINE__); + $result = SQL_QUERY('SELECT `id`, `url`, `alternate`, `visible`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `url` ASC', __FILE__, __LINE__); // Entries found? - if (SQL_NUMROWS($result) > 0) { + if (!SQL_HASZERONUMS($result)) { // Make referal banner editable and deletable - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { - // Preapre data for the row - // @TODO Rewritings: alt->alternate,cnt->counter,clx->clicks in template - $content = array( - 'sw' => $SW, - 'id' => $content['id'], - 'url' => $content['url'], - 'alt' => $content['alternate'], - 'vis' => translateYesNo($content['visible']), - 'cnt' => $content['counter'], - 'clx' => $content['clicks'] - ); - // Load row template and switch color $OUT .= loadTemplate('admin_refbanner_row', true, $content); - $SW = 3 - $SW; - } + } // END - while // Free memory SQL_FREERESULT($result); // Load main template loadTemplate('admin_refbanner', false, $OUT); - } + } // END - if // Form for adding new referal levels loadTemplate('admin_add_banner');