X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=81d8c78803e56f35f63ac86df1f6fa5504cadb53;hp=07abd556d5e68ce0783d730630a6d3807f113ca0;hb=ca256746fe0757a23df4064824c8fe2087ad5634;hpb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index 07abd556d5..81d8c78803 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -6,9 +6,9 @@ * -------------------------------------------------------------------- * * File : what-reflinks.php * * -------------------------------------------------------------------- * - * Short description : Referal links * + * Short description : Referral links * * -------------------------------------------------------------------- * - * Kurzbeschreibung : Referal-Links * + * Kurzbeschreibung : Referral-Links * * -------------------------------------------------------------------- * * $Revision:: $ * * $Date:: $ * @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -37,7 +37,7 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif (!isMember()) { redirectToIndexMemberOnlyModule(); } @@ -56,16 +56,17 @@ if (isExtensionActive('nickname')) { if (!empty($nick)) { // Display nickname link - $content['nickname_content'] = loadTemplate('member_reflink_nickname', true, $nick); + $content['nickname_content'] = loadTemplate('member_reflink_nickname', TRUE, $nick); } else { // Display link to nickname form - $content['nickname_content'] = loadTemplate('member_reflink_no_nickname', true); + $content['nickname_content'] = loadTemplate('member_reflink_no_nickname', TRUE); } } // END - if $whereStatement = " WHERE `visible`='Y'"; if (isAdmin()) $whereStatement = ''; -$result = SQL_QUERY("SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner`", __FILE__, __LINE__); + +$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 @@ -74,7 +75,8 @@ if (!SQL_HASZERONUMS($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 @@ -93,27 +95,32 @@ if (!SQL_HASZERONUMS($result)) { $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}'; } // END - if - if ($size > 0) $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + if ($size > 0) { + $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + } // END - if // Add some more data $row['userid'] = getMemberId(); // Add row - $OUT .= loadTemplate('member_reflinks_row', true, $row); + $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, '{--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); +loadTemplate('member_reflink', FALSE, $content); // [EOF] ?>