X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=1152c1a4457f6cd80395b1c3f481be90c31cf766;hp=e9dcc54c19449ec91ad1230bd1c5283b911a6c9f;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hpb=4ef4c88fc481335dc0631b223111c15a84cccb51 diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index e9dcc54c19..1152c1a445 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -1,7 +1,7 @@ ".YOUR_PERSONAL_REFLINK.":
-".URL."/ref.php?ref=".$GLOBALS['userid']."
-
"); - -if (EXT_IS_ACTIVE("nickname")) -{ +// @TODO Move this into a filter +if (isExtensionActive('nickname')) { // Add nickname link when nickname is entered - $nick = NICKNAME_GET_NICK($GLOBALS['userid']); + $nick = getNickname(getMemberId()); - if (!empty($nick)) - { + if (!empty($nick)) { // Display nickname link - OUTPUT_HTML(NICKNAME_YOUR_REFLINK.":
-".URL."/ref.php?ref=".$nick."
-
"); - } - else - { + $content['nickname_content'] = loadTemplate('member_reflink_nickname', TRUE, $nick); + } else { // Display link to nickname form - OUTPUT_HTML("".NO_NICKNAME_SET."
-".PLEASE_CLICK_NICKNAME_FORM.""); + $content['nickname_content'] = '{%template,LoadTemplate=member_reflink_no_nickname%}'; } -} +} // END - if -// Clicks on your reflink -OUTPUT_HTML(YOUR_REFCLICKS.": ".$c." ".CLICKS."

"); -$whereStatement = " WHERE visible='Y'"; -if (IS_ADMIN()) $whereStatement = ""; -$result = SQL_QUERY("SELECT id, url, alternate, counter, clicks FROM "._MYSQL_PREFIX."_refbanner", __FILE__, __LINE__); +$whereStatement = " WHERE `visible`='Y'"; +if (isAdmin()) $whereStatement = ''; -if (SQL_NUMROWS($result) > 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 - $SW = 2; $OUT = ""; - while (list($id, $url, $alt, $count, $clks) = SQL_FETCHROW($result)) - { - $test = str_replace(URL, PATH, $url); $size = 0; - if ($test == $url) - { + $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 = @file($url); $file = ""; - if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0)) - { + $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 - foreach ($fp as $f) - { - $file .= $f; - } - } - $size = strlen($file); - } elseif (FILE_READABLE($test)) { + foreach ($fp as $f) { + $bannerContent .= $f; + } // END - foreach + } // END - if + $size = strlen($bannerContent); + } elseif (isFileReadable($test)) { $size = filesize($test); } - if ($size > 0) $alt .= " (".TRANSLATE_COMMA(round($size/102.4)/10)." ".KBYTES.")"; - - // Load banner data - $content = array( - 'sw' => $SW, - 'url' => $url, - 'alt' => $alt, - 'cnt' => $count, - 'cks' => $clks, - 'uid' => $GLOBALS['userid'], - 'id' => $id, - ); - // Add row - $OUT .= LOAD_TEMPLATE("member_reflinks_row", true, $content); + // Empty alternative text? + if (empty($row['alternate'])) { + // Then set default + $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}'; + } // END - if - // Switchcolors - $SW = 3 - $SW; - } + if ($size > 0) { + $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + } // END - if - define('__REFLINKS_ROWS', $OUT); + // Add some more data + $row['userid'] = getMemberId(); + + // Add row + $OUT .= loadTemplate('member_list_reflinks_row', TRUE, $row); + } // END - while // Load final template - LOAD_TEMPLATE("member_reflinks_table", false, $GLOBALS['userid']); + $content['refbanner_content'] = loadTemplate('member_list_reflinks', TRUE, $OUT); +} else { + // 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); -CLOSE_TABLE(); -// +// [EOF] ?>