X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-refbanner.php;h=7cbaf8b46e41dcb15ad6f95b1a52e7980ac8b22f;hp=f17446b43ee3ef30b7ddc35bca7a33f35f64d3b1;hb=09f5758c42a33a56bdd461c946ffe759a59c54aa;hpb=d8148e3f1f3a6762b2e786dbe99ada269dcf2ea0 diff --git a/inc/modules/admin/what-refbanner.php b/inc/modules/admin/what-refbanner.php index f17446b43e..7cbaf8b46e 100644 --- a/inc/modules/admin/what-refbanner.php +++ b/inc/modules/admin/what-refbanner.php @@ -1,7 +1,7 @@ $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( - REQUEST_POST('url', $id), - REQUEST_POST('alternate', $id), - REQUEST_POST('visible'), - $id - ), __FILE__, __LINE__); - } - break; + array(postRequestParameter('url'), postRequestParameter('alternate'), postRequestParameter('visible')), __FILE__, __LINE__); + } else { + // Free memory + SQL_FREERESULT($result); + } + break; + + case 'edit': // Update banner + 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( + postRequestParameter('url', $id), + postRequestParameter('alternate', $id), + postRequestParameter('visible'), + $id + ), __FILE__, __LINE__); + } + break; } + // Check if we have saved (updated) if (SQL_AFFECTEDROWS() == 1) { - $content = SETTINGS_SAVED; + // Updated! + $content = getMessage('SETTINGS_SAVED'); } else { - $content = "{--SETTINGS_NOT_SAVED--}"; + // Nothing has been updated + $content = '{--SETTINGS_NOT_SAVED--}'; } - LOAD_TEMPLATE("admin_settings_saved", false, $content); -} elseif (($SEL > 0) && (REQUEST_ISSET_POST(('edit')))) { + + // Display message + loadTemplate('admin_settings_saved', false, $content); +} elseif ((countPostSelection() > 0) && (isPostRequestParameterSet('edit'))) { // Edit banner - $SW = ""; $OUT = ""; - foreach (REQUEST_POST('sel') as $id => $sel) { + $SW = 2; $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__); + $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); SQL_FREERESULT($result); @@ -111,62 +114,60 @@ VALUES ('%s','%s','%s')", 'id' => $id, 'url' => $url, 'alt' => $alt, - 'vis' => ADD_SELECTION("yn", $vis , "visible"), + 'vis' => addSelectionBox('yn', $vis , 'visible'), ); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_refbanner_edit_row", true, $content); + $OUT .= loadTemplate('admin_refbanner_edit_row', true, $content); $SW = 3 - $SW; } - define('__BANNER_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_refbanner_edit"); + loadTemplate('admin_refbanner_edit', false, $OUT); } else { - if (($SEL > 0) && (REQUEST_ISSET_POST(('del')))) - { + if ((countPostSelection() > 0) && (isPostRequestParameterSet('del'))) { // Delete banner - foreach (REQUEST_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 (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__); - if (SQL_NUMROWS($result) > 0) - { + $result = SQL_QUERY("SELECT id, url, alternate, visible, counter, clicks FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY url", __FILE__, __LINE__); + + // Entries found? + 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)) - { + $OUT = ''; $SW = 2; + 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' => $id, - 'url' => $url, - 'alt' => $alt, - 'vis' => TRANSLATE_YESNO($vis), - 'cnt' => $cntr, - 'clx' => $clks + '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 .= LOAD_TEMPLATE("admin_refbanner_row", true, $content); + $OUT .= loadTemplate('admin_refbanner_row', true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); - define('__BANNER_ROWS', $OUT); // Load main template - LOAD_TEMPLATE("admin_refbanner"); + loadTemplate('admin_refbanner', false, $OUT); } // Form for adding new referal levels - LOAD_TEMPLATE("admin_add_banner"); + loadTemplate('admin_add_banner'); } -// +// [EOF] ?>