]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflinks.php
earning_name renamed to earning_provider
[mailer.git] / inc / modules / member / what-reflinks.php
index b44b55d3736033121f02babfe9550b44e297552e..0da2327b03e2a40b16f0a4a5439e3771d2c71f25 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/19/2003 *
- * ===============                              Last change: 09/10/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
+ * ===================                          Last change: 09/10/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-reflinks.php                                *
  * $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 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -44,25 +43,16 @@ if (!defined('__SECURITY')) {
 }
 
 // Add description as navigation point
-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(getUserId()), __FILE__, __LINE__);
-
-// Load it
-$content = SQL_FETCHARRAY($result);
-
-// Free result
-SQL_FREERESULT($result);
+addYouAreHereLink('member', __FILE__);
 
 // Prepare some data
-$content['userid'] = getUserId();
+$content['userid']           = getMemberId();
+$content['nickname_content'] = '';
 
 // @TODO Move this into a filter
 if (isExtensionActive('nickname')) {
        // Add nickname link when nickname is entered
-       $nick = getNickname(getUserId());
+       $nick = getNickname(getMemberId());
 
        if (!empty($nick)) {
                // Display nickname link
@@ -75,16 +65,18 @@ if (isExtensionActive('nickname')) {
 
 $whereStatement = " WHERE `visible`='Y'";
 if (isAdmin()) $whereStatement = '';
-$result = SQL_QUERY("SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner`", __FILE__, __LINE__);
 
-if (SQL_NUMROWS($result) > 0) {
+$result = SQL_QUERY('SELECT `id`,`url`,`alternate`,`counter`,`clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `id` ASC', __FILE__, __LINE__);
+
+if (!SQL_HASZERONUMS($result)) {
        // List available ref banners
-       $OUT = ''; $SW = 2;
+       $OUT = '';
        while ($row = SQL_FETCHARRAY($result)) {
-               $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = 0;
+               $test = str_replace(getUrl(), getPath(), $row['url']); $size = '0';
                if ($test == $row['url']) {
                        // Download banner (I hope you keep the banner on same server???)
-                       $fp = sendGetRequest($row['url']); $bannerContent = '';
+                       $fp = sendGetRequest($row['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
@@ -97,25 +89,28 @@ if (SQL_NUMROWS($result) > 0) {
                        $size = filesize($test);
                }
 
-               $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}';
-               if ($size > 0) $row['alternate'] .= ' ('  .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})';
+               // Empty alternative text?
+               if (empty($row['alternate'])) {
+                       // Then set default
+                       $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}';
+               } // END - if
+
+               if ($size > 0) {
+                       $row['alternate'] .= ' ('  .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})';
+               } // END - if
 
                // Add some more data
-               $row['sw']     = $SW;
-               $row['userid'] = getUserId();
+               $row['userid'] = getMemberId();
 
                // Add row
-               $OUT .= loadTemplate('member_reflinks_row', true, $row);
-
-               // Switchcolors
-               $SW = 3 - $SW;
+               $OUT .= loadTemplate('member_list_reflinks_row', true, $row);
        } // END - while
 
        // Load final template
-       $content['refbanner_content'] = loadTemplate('member_reflinks_table', true, $OUT);
+       $content['refbanner_content'] = loadTemplate('member_list_reflinks', true, $OUT);
 } else {
-       // No refbanner found!
-       $content['refbanner_content'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_REFBANNER_FOUND'));
+       // No refbanner found
+       $content['refbanner_content'] = displayMessage('{--MEMBER_REFERAL_BANNER_404--}', true);
 }
 
 // Free result