Obsoleted parameters to SQL_AFFECTED_ROWS() removed, OPEN_TABLE() and CLOSE_TABLE...
[mailer.git] / inc / modules / member / what-reflinks.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/19/2003 *
4  * ===============                              Last change: 09/10/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-reflinks.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Referral links                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Referral-Links                                   *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
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.                                  *
22  *                                                                      *
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.                         *
27  *                                                                      *
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,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif (!IS_MEMBER())
41 {
42         LOAD_URL("modules.php?module=index");
43 }
44
45 // Add description as navigation point
46 ADD_DESCR("member", basename(__FILE__));
47
48 // Load current referral clicks
49 $result = SQL_QUERY_ESC("SELECT ref_clicks FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
50  array($GLOBALS['userid']), __FILE__, __LINE__);
51
52 list($c) = SQL_FETCHROW($result);
53 SQL_FREERESULT($result);
54
55 OUTPUT_HTML("<FONT class=\"tiny\">".YOUR_PERSONAL_REFLINK.":<br />
56 <STRONG><A href=\"".URL."/ref.php?ref=".$GLOBALS['userid']."\" target=\"_blank\">".URL."/ref.php?ref=".$GLOBALS['userid']."</A></STRONG><br />
57 <br />");
58
59 if (EXT_IS_ACTIVE("nickname"))
60 {
61         // Add nickname link when nickname is entered
62         $nick = NICKNAME_GET_NICK($GLOBALS['userid']);
63
64         if (!empty($nick))
65         {
66                 // Display nickname link
67                 OUTPUT_HTML(NICKNAME_YOUR_REFLINK.":<br />
68 <STRONG><A href=\"".URL."/ref.php?ref=".$nick."\" target=\"_blank\">".URL."/ref.php?ref=".$nick."</A></STRONG><br />
69 <br />");
70         }
71          else
72         {
73                 // Display link to nickname form
74                 OUTPUT_HTML("<STRONG class=\"guest_note\">".NO_NICKNAME_SET."</STRONG><br />
75 <A class=\"tiny\" href=\"".URL."/modules.php?module=login&amp;what=nickname\">".PLEASE_CLICK_NICKNAME_FORM."</A>");
76         }
77 }
78
79 // Clicks on your reflink
80 OUTPUT_HTML(YOUR_REFCLICKS.": <STRONG>".$c."</STRONG> ".CLICKS."</FONT><br /><br />");
81 $whereStatement = " WHERE visible='Y'";
82 if (IS_ADMIN()) $whereStatement = "";
83 $result = SQL_QUERY("SELECT id, url, alternate, counter, clicks FROM "._MYSQL_PREFIX."_refbanner", __FILE__, __LINE__);
84
85 if (SQL_NUMROWS($result) > 0)
86 {
87         // List available ref banners
88         $SW = 2; $OUT = "";
89         while (list($id, $url, $alt, $count, $clks) = SQL_FETCHROW($result))
90         {
91                 $test = str_replace(URL, PATH, $url); $size = 0;
92                 if ($test == $url)
93                 {
94                         // Download banner (I hope you keep the banner on same server???)
95                         $fp = @file($url); $file = "";
96                         if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0))
97                         {
98                                 // Loads only found banner, when there is a 404 error this foreach() command
99                                 // will cause an "Invalid argument supplied for foreach()" error
100                                 foreach ($fp as $f)
101                                 {
102                                         $file .= $f;
103                                 }
104                         }
105                         $size = strlen($file);
106                 } elseif (FILE_READABLE($test)) {
107                         $size = filesize($test);
108                 }
109                 if ($size > 0) $alt .= " (".TRANSLATE_COMMA(round($size/102.4)/10)." ".KBYTES.")";
110
111                 // Load banner data
112                 $content = array(
113                         'sw'  => $SW,
114                         'url' => $url,
115                         'alt' => $alt,
116                         'cnt' => $count,
117                         'cks' => $clks,
118                         'uid' => $GLOBALS['userid'],
119                         'id'  => $id,
120                 );
121
122                 // Add row
123                 $OUT .= LOAD_TEMPLATE("member_reflinks_row", true, $content);
124
125                 // Switchcolors
126                 $SW = 3 - $SW;
127         }
128
129         define('__REFLINKS_ROWS', $OUT);
130
131         // Load final template
132         LOAD_TEMPLATE("member_reflinks_table", false, $GLOBALS['userid']);
133 }
134
135 // Free result
136 SQL_FREERESULT($result);
137
138 //
139 ?>