2 /************************************************************************
3 * MXChange v0.2.1 Start: 10/19/2003 *
4 * =============== Last change: 09/10/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-reflinks.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Referral links *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Referral-Links *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
18 * This program is free software; you can redistribute it and/or modify *
19 * it under the terms of the GNU General Public License as published by *
20 * the Free Software Foundation; either version 2 of the License, or *
21 * (at your option) any later version. *
23 * This program is distributed in the hope that it will be useful, *
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
26 * GNU General Public License for more details. *
28 * You should have received a copy of the GNU General Public License *
29 * along with this program; if not, write to the Free Software *
30 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
32 ************************************************************************/
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
37 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 elseif (!IS_LOGGED_IN())
42 LOAD_URL(URL."/modules.php?module=index");
45 // Add description as navigation point
46 ADD_DESCR("member", basename(__FILE__));
48 OPEN_TABLE("90%", "member_table member_content_align", "");
50 // Load current referral clicks
51 $result = SQL_QUERY_ESC("SELECT ref_clicks FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
52 array($GLOBALS['userid']), __FILE__, __LINE__);
54 list($c) = SQL_FETCHROW($result);
55 SQL_FREERESULT($result);
57 OUTPUT_HTML("<FONT class=\"tiny\">".YOUR_PERSONAL_REFLINK.":<br />
58 <STRONG><A href=\"".URL."/ref.php?ref=".$GLOBALS['userid']."\" target=\"_blank\">".URL."/ref.php?ref=".$GLOBALS['userid']."</A></STRONG><br />
61 if (EXT_IS_ACTIVE("nickname"))
63 // Add nickname link when nickname is entered
64 $nick = NICKNAME_GET_NICK($GLOBALS['userid']);
68 // Display nickname link
69 OUTPUT_HTML(NICKNAME_YOUR_REFLINK.":<br />
70 <STRONG><A href=\"".URL."/ref.php?ref=".$nick."\" target=\"_blank\">".URL."/ref.php?ref=".$nick."</A></STRONG><br />
75 // Display link to nickname form
76 OUTPUT_HTML("<STRONG class=\"guest_note\">".NO_NICKNAME_SET."</STRONG><br />
77 <A class=\"tiny\" href=\"".URL."/modules.php?module=login&what=nickname\">".PLEASE_CLICK_NICKNAME_FORM."</A>");
81 // Clicks on your reflink
82 OUTPUT_HTML(YOUR_REFCLICKS.": <STRONG>".$c."</STRONG> ".CLICKS."</FONT><br /><br />");
83 $WHERE = " WHERE visible='Y'";
84 if (IS_ADMIN()) $WHERE = "";
85 $result = SQL_QUERY("SELECT id, url, alternate, counter, clicks FROM "._MYSQL_PREFIX."_refbanner", __FILE__, __LINE__);
87 if (SQL_NUMROWS($result) > 0)
89 // List available ref banners
91 while (list($id, $url, $alt, $count, $clks) = SQL_FETCHROW($result))
93 $test = str_replace(URL, PATH, $url); $size = 0;
96 // Download banner (I hope you keep the banner on same server???)
97 $fp = @file($url); $file = "";
98 if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0))
100 // Loads only found banner, when there is a 404 error this foreach() command
101 // will cause an "Invalid argument supplied for foreach()" error
107 $size = strlen($file);
109 elseif (file_exists($test))
111 $size = filesize($test);
113 if ($size > 0) $alt .= " (".TRANSLATE_COMMA(round($size/102.4)/10)." ".KBYTES.")";
122 'uid' => $GLOBALS['userid'],
127 $OUT .= LOAD_TEMPLATE("member_reflinks_row", true, $content);
133 define('__REFLINKS_ROWS', $OUT);
135 // Load final template
136 LOAD_TEMPLATE("member_reflinks_table", false, $GLOBALS['userid']);
140 SQL_FREERESULT($result);