X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=d8e75ca5524dd3ec378f2c045b8eb0f554a40121;hb=f42e417c1cd63d07563965c54bf10f6e1cd4248f;hp=fbb1b0d59b4dc2c6b7bc6d8a859f333d4020a406;hpb=d52156d35605388b7554c31d08bc29f0bb167079;p=mailer.git diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index fbb1b0d59b..d8e75ca552 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * 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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -33,97 +38,89 @@ // Some security stuff... 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"); + die(); +} elseif (!isMember()) { + redirectToIndexMemberOnlyModule(); } // Add description as navigation point -ADD_DESCR("member", __FILE__); +addMenuDescription('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__); -list($c) = SQL_FETCHROW($result); +$result = SQL_QUERY_ESC("SELECT `ref_clicks` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", + array(getUserId()), __FILE__, __LINE__); +$content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); -OUTPUT_HTML("
".YOUR_PERSONAL_REFLINK.":
-{!URL!}/ref.php?ref=".$GLOBALS['userid']."
+outputHtml("
{--YOUR_PERSONAL_REFLINK--}:
+{?URL?}/ref.php?ref=".getUserId()."

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

"); } else { // Display link to nickname form - OUTPUT_HTML("
".NO_NICKNAME_SET."
-".PLEASE_CLICK_NICKNAME_FORM.""); + outputHtml("
{--NO_NICKNAME_SET--}
+{--PLEASE_CLICK_NICKNAME_FORM--}"); } } // Clicks on your reflink -OUTPUT_HTML(YOUR_REFCLICKS.": ".$c." ".CLICKS."


"); +outputHtml("{--YOUR_REFCLICKS--}: ".$content['ref_clicks']." {--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 = ''; +$result = SQL_QUERY("SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner`", __FILE__, __LINE__); 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, constant('PATH'), $url); $size = 0; - if ($test == $url) { + $OUT = ''; $SW = 2; + while ($content = SQL_FETCHARRAY($result)) { + $test = str_replace(getConfig('URL'), getConfig('PATH'), $content['url']); $size = 0; + if ($test == $content['url']) { // Download banner (I hope you keep the banner on same server???) - $fp = GET_URL($url); $bannerContent = ""; - if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0) { + $fp = sendGetRequest($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) { $bannerContent .= $f; - } - } + } // END - foreach + } // END - if $size = strlen($bannerContent); - } elseif (FILE_READABLE($test)) { + } 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, - ); + + if ($size > 0) $content['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + + // Add some more data + $content['sw'] = $SW; + $content['userid'] = getUserId(); // Add row - $OUT .= LOAD_TEMPLATE("member_reflinks_row", true, $content); + $OUT .= loadTemplate('member_reflinks_row', true, $content); // Switchcolors $SW = 3 - $SW; - } - - define('__REFLINKS_ROWS', $OUT); + } // END - while // Load final template - LOAD_TEMPLATE("member_reflinks_table", false, $GLOBALS['userid']); + loadTemplate('member_reflinks_table', false, $OUT); } else { // No refbanner found! - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_NO_REFBANNER_FOUND')); + loadTemplate('admin_settings_saved', false, getMessage('MEMBER_NO_REFBANNER_FOUND')); } // Free result SQL_FREERESULT($result); -// +// [EOF] ?>