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