X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-refbanner.php;h=1a6d1dd7e4ced5180d400160c7fbeefae94ebfb3;hb=8ce32e702f3caa76b8d446902948e83e1e6854c8;hp=99c2d4e6eb468f3da2555930c851050cfe4a5f5e;hpb=d3c4fdd9bfab35389e1a5ff48f3952d527c7b4bb;p=mailer.git diff --git a/inc/modules/admin/what-refbanner.php b/inc/modules/admin/what-refbanner.php index 99c2d4e6eb..1a6d1dd7e4 100644 --- a/inc/modules/admin/what-refbanner.php +++ b/inc/modules/admin/what-refbanner.php @@ -1,12 +1,12 @@ {--SETTINGS_NOT_SAVED--}"; + // Nothing has been updated + $content = '{--SETTINGS_NOT_SAVED--}'; } - loadTemplate('admin_settings_saved', false, $content); -} elseif (($SEL > 0) && (isPostRequestElementSet('edit'))) { + + // Display message + displayMessage($content); +} elseif ((ifPostContainsSelections()) && (isFormSent('edit'))) { // Edit banner - $SW = 2; $OUT = ''; + $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' => 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; - } + $OUT .= loadTemplate('admin_edit_refbanner_row', true, $content); + } // END - foreach // Load main template - loadTemplate('admin_refbanner_edit', false, $OUT); + loadTemplate('admin_edit_refbanner', false, $OUT); } else { - if (($SEL > 0) && (isPostRequestElementSet('del'))) { + 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", @@ -133,40 +128,27 @@ VALUES ('%s','%s','%s')", } // 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__); + // 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_NUMROWS($result) > 0) { - // Make referal banner editable and deletable - $OUT = ''; $SW = 2; + if (!SQL_HASZERONUMS($result)) { + // Make referral banner editable and deletable + $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; - } + $OUT .= loadTemplate('admin_list_refbanner_row', true, $content); + } // END - while // Free memory SQL_FREERESULT($result); // Load main template - loadTemplate('admin_refbanner', false, $OUT); - } + loadTemplate('admin_list_refbanner', false, $OUT); + } // END - if - // Form for adding new referal levels - loadTemplate('admin_add_banner'); + // Form for adding new referral levels + loadTemplate('admin_add_refbanner'); } // [EOF]