X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=49f6b585e619b27b290a1be5f20c1f22808be606;hb=ee3a0b42f93de7676fca549c866c1c2e6f3f0576;hp=89d72e594f044e8d849867118c2d909b28d8ebeb;hpb=4f2414a0134da82027fce8a6c98696a207c8c8cc;p=mailer.git diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index 89d72e594f..49f6b585e6 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -1,24 +1,23 @@ 0) { +$result = SQL_QUERY('SELECT `id`,`url`,`alternate`,`counter`,`clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `id` ASC', __FILE__, __LINE__); + +if (!SQL_HASZERONUMS($result)) { // List available ref banners - $OUT = ''; $SW = 2; + $OUT = ''; while ($row = SQL_FETCHARRAY($result)) { - $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = 0; + $test = str_replace(getUrl(), getPath(), $row['url']); $size = '0'; if ($test == $row['url']) { // Download banner (I hope you keep the banner on same server???) - $fp = sendGetRequest($row['url']); $bannerContent = ''; + $fp = sendGetRequest($row['url']); + $bannerContent = ''; if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0)) { // Loads only found banner, when there is a 404 error this foreach() command // will cause an "Invalid argument supplied for foreach()" error @@ -97,24 +89,28 @@ if (SQL_NUMROWS($result) > 0) { $size = filesize($test); } - if ($size > 0) $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + // Empty alternative text? + if (empty($row['alternate'])) { + // Then set default + $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}'; + } // END - if + + if ($size > 0) { + $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + } // END - if // Add some more data - $row['sw'] = $SW; - $row['userid'] = getUserId(); + $row['userid'] = getMemberId(); // Add row - $OUT .= loadTemplate('member_reflinks_row', true, $row); - - // Switchcolors - $SW = 3 - $SW; + $OUT .= loadTemplate('member_list_reflinks_row', true, $row); } // END - while // Load final template - $content['refbanner_content'] = loadTemplate('member_reflinks_table', true, $OUT); + $content['refbanner_content'] = loadTemplate('member_list_reflinks', true, $OUT); } else { - // No refbanner found! - $content['refbanner_content'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_REFBANNER_FOUND')); + // No refbanner found + $content['refbanner_content'] = displayMessage('{--MEMBER_REFERRAL_BANNER_404--}', true); } // Free result