X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=751ff784dfb499c9628758be4c2550b3816a4440;hp=ee7d7827091d700945758f5c61810510d126a8d7;hb=a090e351c49fe021fb3064325694da03402332e0;hpb=d0c792100bf4b67acd1824860204929c1540f6fb diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index ee7d782709..751ff784df 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Referal-Links * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -36,84 +41,76 @@ if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } elseif (!IS_MEMBER()) { - LOAD_URL("modules.php?module=index"); + LOAD_URL('modules.php?module=index'); } // Add description as navigation point -ADD_DESCR("member", __FILE__); +ADD_DESCR('member', __FILE__); // Load current referal clicks -$result = SQL_QUERY_ESC("SELECT ref_clicks FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", - array($GLOBALS['userid']), __FILE__, __LINE__); - +$result = SQL_QUERY_ESC("SELECT ref_clicks FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", + array(getUserId()), __FILE__, __LINE__); list($c) = SQL_FETCHROW($result); SQL_FREERESULT($result); -OUTPUT_HTML("".YOUR_PERSONAL_REFLINK.":
-".URL."/ref.php?ref=".$GLOBALS['userid']."
+OUTPUT_HTML("
{--YOUR_PERSONAL_REFLINK--}:
+{!URL!}/ref.php?ref=".getUserId()."

"); -if (EXT_IS_ACTIVE("nickname")) -{ +if (EXT_IS_ACTIVE('nickname')) { // Add nickname link when nickname is entered - $nick = NICKNAME_GET_NICK($GLOBALS['userid']); + $nick = NICKNAME_GET_NICK(getUserId()); - if (!empty($nick)) - { + if (!empty($nick)) { // Display nickname link - OUTPUT_HTML(NICKNAME_YOUR_REFLINK.":
-".URL."/ref.php?ref=".$nick."
+ OUTPUT_HTML("{--NICKNAME_YOUR_REFLINK--}:
+{!URL!}/ref.php?ref=".$nick."

"); - } - else - { + } else { // Display link to nickname form - OUTPUT_HTML("".NO_NICKNAME_SET."
-".PLEASE_CLICK_NICKNAME_FORM.""); + OUTPUT_HTML("
{--NO_NICKNAME_SET--}
+{--PLEASE_CLICK_NICKNAME_FORM--}"); } } // 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__); +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 (SQL_NUMROWS($result) > 0) -{ +if (SQL_NUMROWS($result) > 0) { // 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 = ''; $SW = 2; + while ($content = SQL_FETCHARRAY($result)) { + $test = str_replace(constant('URL'), constant('PATH'), $content['url']); $size = 0; + if ($test == $content['url']) { // Download banner (I hope you keep the banner on same server???) - $fp = GET_URL($url); $file = ""; - if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0)) - { + $fp = GET_URL($content['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; + foreach ($fp as $f) { + $bannerContent .= $f; } } - $size = strlen($file); + $size = strlen($bannerContent); } elseif (FILE_READABLE($test)) { $size = filesize($test); } - if ($size > 0) $alt .= " (".TRANSLATE_COMMA(round($size/102.4)/10)." ".KBYTES.")"; + + if ($size > 0) $content['alternate'] .= " (".TRANSLATE_COMMA(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' => $url, - 'alt' => $alt, - 'cnt' => $count, - 'cks' => $clks, - 'uid' => $GLOBALS['userid'], - 'id' => $id, + 'url' => $content['url'], + 'alt' => $content['alternate'], + 'cnt' => $content['counter'], + 'cks' => $content['clicks'], + 'uid' => getUserId(), + 'id' => $content['id'], ); // Add row @@ -126,7 +123,10 @@ if (SQL_NUMROWS($result) > 0) define('__REFLINKS_ROWS', $OUT); // Load final template - LOAD_TEMPLATE("member_reflinks_table", false, $GLOBALS['userid']); + LOAD_TEMPLATE("member_reflinks_table", false, getUserId()); +} else { + // No refbanner found! + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_NO_REFBANNER_FOUND')); } // Free result