X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=1152c1a4457f6cd80395b1c3f481be90c31cf766;hp=b44b55d3736033121f02babfe9550b44e297552e;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hpb=26677f1ab418c2195c9c5160ed0f8d0983b6fdec diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index b44b55d373..1152c1a445 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -1,24 +1,23 @@ 0) { +$result = sqlQuery('SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `id` ASC', __FILE__, __LINE__); + +if (!ifSqlHasZeroNumRows($result)) { // List available ref banners - $OUT = ''; $SW = 2; - while ($row = SQL_FETCHARRAY($result)) { - $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = 0; + $OUT = ''; + while ($row = sqlFetchArray($result)) { + $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 = sendHttpGetRequest($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,32 +89,38 @@ if (SQL_NUMROWS($result) > 0) { $size = filesize($test); } - $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}'; - 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'] = returnMessage('{--MEMBER_REFERRAL_BANNER_404--}'); } // Free result -SQL_FREERESULT($result); +sqlFreeResult($result); + +// Add extra content through filter +$content['extra_content'] = runFilterChain('member_reflink_extra_content'); // Load main template -loadTemplate('member_reflink', false, $content); +loadTemplate('member_reflink', FALSE, $content); // [EOF] ?>