A lot code rewritten:
[mailer.git] / inc / modules / member / what-reflinks.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
4  * ===================                          Last change: 09/10/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-reflinks.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Referal links                                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Referal-Links                                    *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif (!isMember()) {
44         redirectToIndexMemberOnlyModule();
45 }
46
47 // Add description as navigation point
48 addMenuDescription('member', __FILE__);
49
50 // Prepare some data
51 $content['userid']           = getMemberId();
52 $content['nickname_content'] = '';
53
54 // @TODO Move this into a filter
55 if (isExtensionActive('nickname')) {
56         // Add nickname link when nickname is entered
57         $nick = getNickname(getMemberId());
58
59         if (!empty($nick)) {
60                 // Display nickname link
61                 $content['nickname_content'] = loadTemplate('member_reflink_nickname', true, $nick);
62         } else {
63                 // Display link to nickname form
64                 $content['nickname_content'] = loadTemplate('member_reflink_no_nickname', true);
65         }
66 } // END - if
67
68 $whereStatement = " WHERE `visible`='Y'";
69 if (isAdmin()) $whereStatement = '';
70 $result = SQL_QUERY("SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner`", __FILE__, __LINE__);
71
72 if (SQL_NUMROWS($result) > 0) {
73         // List available ref banners
74         $OUT = '';
75         while ($row = SQL_FETCHARRAY($result)) {
76                 $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = '0';
77                 if ($test == $row['url']) {
78                         // Download banner (I hope you keep the banner on same server???)
79                         $fp = sendGetRequest($row['url']); $bannerContent = '';
80                         if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0)) {
81                                 // Loads only found banner, when there is a 404 error this foreach() command
82                                 // will cause an "Invalid argument supplied for foreach()" error
83                                 foreach ($fp as $f) {
84                                         $bannerContent .= $f;
85                                 } // END - foreach
86                         } // END - if
87                         $size = strlen($bannerContent);
88                 } elseif (isFileReadable($test)) {
89                         $size = filesize($test);
90                 }
91
92                 // Empty alternative text?
93                 if (empty($row['alternate'])) {
94                         // Then set default
95                         $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}';
96                 } // END - if
97
98                 if ($size > 0) $row['alternate'] .= ' ('  .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})';
99
100                 // Add some more data
101                 $row['userid'] = getMemberId();
102
103                 // Add row
104                 $OUT .= loadTemplate('member_reflinks_row', true, $row);
105         } // END - while
106
107         // Load final template
108         $content['refbanner_content'] = loadTemplate('member_reflinks_table', true, $OUT);
109 } else {
110         // No refbanner found!
111         $content['refbanner_content'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_REFBANNER_FOUND--}');
112 }
113
114 // Free result
115 SQL_FREERESULT($result);
116
117 // Load main template
118 loadTemplate('member_reflink', false, $content);
119
120 // [EOF]
121 ?>