X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-refbanner.php;h=e8754f6ba2eb3b28ab48ec4d24dd0344f1914e55;hp=c2ec5fe322adabeaea0c20a8c5c4987077923deb;hb=e3934352dffa6eb9da59a137ae1a9414e5b4d80b;hpb=89c00e43d2ce1dd1afe11c2c8485307342805f97 diff --git a/inc/modules/admin/what-refbanner.php b/inc/modules/admin/what-refbanner.php index c2ec5fe322..e8754f6ba2 100644 --- a/inc/modules/admin/what-refbanner.php +++ b/inc/modules/admin/what-refbanner.php @@ -1,19 +1,23 @@ $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($_POST['url'][$id], $_POST['alternate'][$id], $_POST['visible'], $id), __FILE__, __LINE__); - } - break; - } - if (SQL_AFFECTEDROWS() == 1) - { - $content = "".SETTINGS_SAVED.""; - } - else - { - $content = "".SETTINGS_NOT_SAVED.""; + break; + + case 'edit': // Update banner + foreach (postRequestElement('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__); + } + break; + } // END - switch + + // Check if we have saved (updated) + if (!SQL_HASZEROAFFECTED()) { + // Updated! + $content = '{--SETTINGS_SAVED--}'; + } else { + // Nothing has been updated + $content = '{--SETTINGS_NOT_SAVED--}'; } - LOAD_TEMPLATE("admin_settings_saved", false, $content); -} - elseif (($SEL > 0) && (isset($_POST['edit']))) -{ + + // Display message + displayMessage($content); +} elseif ((ifPostContainsSelections()) && (isFormSent('edit'))) { // Edit banner - $SW = ""; $OUT = ""; - foreach ($_POST['sel'] as $id => $sel) - { + $OUT = ''; + foreach (postRequestElement('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 `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); // Preapre data for the row - $content = array( - 'sw' => $SW, - 'id' => $id, - 'url' => $url, - 'alt' => $alt, - 'vis' => ADD_SELECTION("yn", $vis , "visible"), - ); + $content['visible'] = addSelectionBox('yn', $content['visible'], 'visible'); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_refbanner_edit_row", true, $content); - $SW = 3 - $SW; - } - define('__BANNER_ROWS', $OUT); + $OUT .= loadTemplate('admin_edit_refbanner_row', true, $content); + } // END - foreach // Load main template - LOAD_TEMPLATE("admin_refbanner_edit"); -} - else -{ - if (($SEL > 0) && (isset($_POST['del']))) - { + loadTemplate('admin_edit_refbanner', false, $OUT); +} else { + if ((ifPostContainsSelections()) && (isFormSent('delete'))) { // Delete banner - foreach ($_POST['sel'] as $id => $sel) { - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_refbanner WHERE id=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - } - } + foreach (postRequestElement('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__); - if (SQL_NUMROWS($result) > 0) - { - // Make referal banner editable and deletable - $SW = 2; $OUT = ""; - while (list($id, $url, $alt, $vis, $cntr, $clks) = SQL_FETCHROW($result)) - { - // Preapre data for the row - $content = array( - 'sw' => $SW, - 'id' => $id, - 'url' => $url, - 'alt' => $alt, - 'vis' => TRANSLATE_YESNO($vis), - 'cnt' => $cntr, - 'clx' => $clks - ); + // Referral levels + $result = SQL_QUERY('SELECT `id`,`url`,`alternate`,`visible`,`counter`,`clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `url` ASC', __FILE__, __LINE__); + // Entries found? + if (!SQL_HASZERONUMS($result)) { + // Make referral banner editable and deletable + $OUT = ''; + while ($content = SQL_FETCHARRAY($result)) { // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_refbanner_row", true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_list_refbanner_row', true, $content); + } // END - while // Free memory SQL_FREERESULT($result); - define('__BANNER_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_refbanner"); - } + loadTemplate('admin_list_refbanner', false, $OUT); + } // END - if - // Form for adding new referal levels - LOAD_TEMPLATE("admin_add_banner"); + // Form for adding new referral levels + loadTemplate('admin_add_refbanner'); } -// +// [EOF] ?>