X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=5dfe4d462737e93d049405816191710ec6c96f66;hb=cd7d344ea7007cfa20413acd3e03e50f0ab86d86;hp=64e00bf64faa9d6cf29f07e77f6e5719695da347;hpb=7b0f17cd637e388049d2167811e4332cec1e979b;p=mailer.git diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index 64e00bf64f..5dfe4d4627 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -1,24 +1,23 @@ {--YOUR_PERSONAL_REFLINK--}:
-{!URL!}/ref.php?ref=".getUserId()."
-
"); +// Prepare some data +$content['userid'] = getMemberId(); +$content['nickname_content'] = ''; -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(getUserId()); + $nick = getNickname(getMemberId()); if (!empty($nick)) { // Display nickname link - OUTPUT_HTML("{--NICKNAME_YOUR_REFLINK--}:
-{!URL!}/ref.php?ref=".$nick."
-
"); + $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__); +if (isAdmin()) $whereStatement = ''; -if (SQL_NUMROWS($result) > 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; - while ($content = SQL_FETCHARRAY($result)) { - $test = str_replace(constant('URL'), constant('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 = ''; - 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) { $bannerContent .= $f; - } - } + } // END - foreach + } // END - if $size = strlen($bannerContent); } elseif (isFileReadable($test)) { $size = filesize($test); } - if ($size > 0) $content['alternate'] .= " (".translateComma(round($size/102.4)/10)." {--KBYTES--})"; - - // Load banner data - // @TODO Rewritings: alt->alternate,cnt->counter,cks->clicks,uid->userid in template - $content = array( - 'sw' => $SW, - 'url' => $content['url'], - 'alt' => $content['alternate'], - 'cnt' => $content['counter'], - 'cks' => $content['clicks'], - 'uid' => getUserId(), - 'id' => $content['id'], - ); + // Empty alternative text? + if (empty($row['alternate'])) { + // Then set default + $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}'; + } // END - if - // Add row - $OUT .= LOAD_TEMPLATE("member_reflinks_row", true, $content); + if ($size > 0) { + $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + } // END - if - // Switchcolors - $SW = 3 - $SW; - } + // Add some more data + $row['userid'] = getMemberId(); - define('__REFLINKS_ROWS', $OUT); + // Add row + $OUT .= loadTemplate('member_list_reflinks_row', TRUE, $row); + } // END - while // Load final template - LOAD_TEMPLATE("member_reflinks_table", false, getUserId()); + $content['refbanner_content'] = loadTemplate('member_list_reflinks', TRUE, $OUT); } else { - // No refbanner found! - LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_NO_REFBANNER_FOUND')); + // No refbanner found + $content['refbanner_content'] = displayMessage('{--MEMBER_REFERRAL_BANNER_404--}', TRUE); } // Free result SQL_FREERESULT($result); -// +// Add extra content through filter +$content['extra_content'] = runFilterChain('member_reflink_extra_content'); + +// Load main template +loadTemplate('member_reflink', FALSE, $content); + +// [EOF] ?>