X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=c25d3ff01264e67dbaee3d7f580b973887f037f0;hb=6c0abc9f643c69610fe87be0ddb1a5dab95c6d39;hp=d8e75ca5524dd3ec378f2c045b8eb0f554a40121;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index d8e75ca552..c25d3ff012 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=".getUserId()."
-
"); +// Prepare some data +$content['userid'] = getMemberId(); +$content['nickname_content'] = ''; +// @TODO Move this into a filter if (isExtensionActive('nickname')) { // Add nickname link when nickname is entered - $nick = getNickname(getUserId()); + $nick = getNickname(getMemberId()); if (!empty($nick)) { // Display nickname link - outputHtml("{--NICKNAME_YOUR_REFLINK--}:
-{?URL?}/ref.php?ref=".$nick."
-
"); + $content['nickname_content'] = loadTemplate('member_reflink_nickname', true, $nick); } else { // Display link to nickname form - outputHtml("
{--NO_NICKNAME_SET--}
-{--PLEASE_CLICK_NICKNAME_FORM--}"); + $content['nickname_content'] = loadTemplate('member_reflink_no_nickname', true); } -} - -// Clicks on your reflink -outputHtml("{--YOUR_REFCLICKS--}: ".$content['ref_clicks']." {--CLICKS--}


"); +} // END - if $whereStatement = " WHERE `visible`='Y'"; if (isAdmin()) $whereStatement = ''; $result = SQL_QUERY("SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner`", __FILE__, __LINE__); -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // List available ref banners - $OUT = ''; $SW = 2; - while ($content = SQL_FETCHARRAY($result)) { - $test = str_replace(getConfig('URL'), getConfig('PATH'), $content['url']); $size = 0; - if ($test == $content['url']) { + $OUT = ''; + while ($row = SQL_FETCHARRAY($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($content['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 @@ -99,28 +89,33 @@ if (SQL_NUMROWS($result) > 0) { $size = filesize($test); } - if ($size > 0) $content['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--})'; // Add some more data - $content['sw'] = $SW; - $content['userid'] = getUserId(); + $row['userid'] = getMemberId(); // Add row - $OUT .= loadTemplate('member_reflinks_row', true, $content); - - // Switchcolors - $SW = 3 - $SW; + $OUT .= loadTemplate('member_reflinks_row', true, $row); } // END - while // Load final template - loadTemplate('member_reflinks_table', false, $OUT); + $content['refbanner_content'] = loadTemplate('member_reflinks_table', true, $OUT); } else { // No refbanner found! - loadTemplate('admin_settings_saved', false, getMessage('MEMBER_NO_REFBANNER_FOUND')); + $content['refbanner_content'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_REFBANNER_FOUND--}'); } // Free result SQL_FREERESULT($result); +// Load main template +loadTemplate('member_reflink', false, $content); + // [EOF] ?>