]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflinks.php
Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / modules / member / what-reflinks.php
index 8b400c254c3efcd9c36ce6d99a1c1b59e1d7cdfa..1152c1a4457f6cd80395b1c3f481be90c31cf766 100644 (file)
@@ -1,19 +1,23 @@
 <?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                                *
  * -------------------------------------------------------------------- *
- * Short description : Referal links                                    *
+ * Short description : Referral links                                   *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Referal-Links                                    *
+ * Kurzbeschreibung  : Referral-Links                                   *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif (!IS_MEMBER()) {
-       LOAD_URL("modules.php?module=index");
+       exit();
+} elseif (!isMember()) {
+       redirectToIndexMemberOnlyModule();
 }
 
 // Add description as navigation point
-ADD_DESCR("member", __FILE__);
-
-// Load current referal clicks
-$result = SQL_QUERY_ESC("SELECT ref_clicks FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-       array($GLOBALS['userid']), __FILE__, __LINE__);
-list($c) = SQL_FETCHROW($result);
-SQL_FREERESULT($result);
+addYouAreHereLink('member', __FILE__);
 
-OUTPUT_HTML("<div class=\"tiny\">".YOUR_PERSONAL_REFLINK.":<br />
-<strong><a href=\"{!URL!}/ref.php?refid=".$GLOBALS['userid']."\" target=\"_blank\">{!URL!}/ref.php?ref=".$GLOBALS['userid']."</a></strong><br />
-<br />");
+// Prepare some data
+$content['userid']           = getMemberId();
+$content['nickname_content'] = '';
 
-if (EXT_IS_ACTIVE("nickname")) {
+// @TODO Move this into a filter
+if (isExtensionActive('nickname')) {
        // Add nickname link when nickname is entered
-       $nick = NICKNAME_GET_NICK($GLOBALS['userid']);
+       $nick = getNickname(getMemberId());
 
        if (!empty($nick)) {
                // Display nickname link
-               OUTPUT_HTML(NICKNAME_YOUR_REFLINK.":<br />
-<strong><a href=\"{!URL!}/ref.php?ref=".$nick."\" target=\"_blank\">{!URL!}/ref.php?ref=".$nick."</a></strong><br />
-<br />");
+               $content['nickname_content'] = loadTemplate('member_reflink_nickname', TRUE, $nick);
        } else {
                // Display link to nickname form
-               OUTPUT_HTML("<div class=\"guest_note\">".NO_NICKNAME_SET."</strong><br />
-<a class=\"tiny\" href=\"{!URL!}/modules.php?module=login&amp;what=nickname\">".PLEASE_CLICK_NICKNAME_FORM."</a>");
+               $content['nickname_content'] = '{%template,LoadTemplate=member_reflink_no_nickname%}';
        }
-}
+} // END - if
 
-// Clicks on your reflink
-OUTPUT_HTML(YOUR_REFCLICKS.": <strong>".$c."</strong> ".CLICKS."</div><br /><br />");
 $whereStatement = " WHERE `visible`='Y'";
-if (IS_ADMIN()) $whereStatement = "";
-$result = SQL_QUERY("SELECT id, url, alternate, counter, clicks FROM `{!_MYSQL_PREFIX!}_refbanner`", __FILE__, __LINE__);
+if (isAdmin()) $whereStatement = '';
 
-if (SQL_NUMROWS($result) > 0) {
+$result = sqlQuery('SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` ORDER BY `id` ASC', __FILE__, __LINE__);
+
+if (!ifSqlHasZeroNumRows($result)) {
        // List available ref banners
-       $SW = 2; $OUT = "";
-       while (list($id, $url, $alt, $count, $clks) = SQL_FETCHROW($result)) {
-               $test = str_replace(URL, PATH, $url); $size = 0;
-               if ($test == $url) {
+       $OUT = '';
+       while ($row = sqlFetchArray($result)) {
+               $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 = GET_URL($url); $file = "";
-                       if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0) {
+                       $fp = sendHttpGetRequest($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
                                foreach ($fp as $f) {
-                                       $file .= $f;
-                               }
-                       }
-                       $size = strlen($file);
-               } elseif (FILE_READABLE($test)) {
+                                       $bannerContent .= $f;
+                               } // END - foreach
+                       } // END - if
+                       $size = strlen($bannerContent);
+               } elseif (isFileReadable($test)) {
                        $size = filesize($test);
                }
-               if ($size > 0) $alt .= " (".TRANSLATE_COMMA(round($size/102.4)/10)." ".KBYTES.")";
-
-               // Load banner data
-               $content = array(
-                       'sw'  => $SW,
-                       'url' => $url,
-                       'alt' => $alt,
-                       'cnt' => $count,
-                       'cks' => $clks,
-                       'uid' => $GLOBALS['userid'],
-                       'id'  => $id,
-               );
 
-               // Add row
-               $OUT .= LOAD_TEMPLATE("member_reflinks_row", true, $content);
+               // Empty alternative text?
+               if (empty($row['alternate'])) {
+                       // Then set default
+                       $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}';
+               } // END - if
 
-               // Switchcolors
-               $SW = 3 - $SW;
-       }
+               if ($size > 0) {
+                       $row['alternate'] .= ' ('  .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})';
+               } // END - if
+
+               // Add some more data
+               $row['userid'] = getMemberId();
 
-       define('__REFLINKS_ROWS', $OUT);
+               // Add row
+               $OUT .= loadTemplate('member_list_reflinks_row', TRUE, $row);
+       } // END - while
 
        // Load final template
-       LOAD_TEMPLATE("member_reflinks_table", false, $GLOBALS['userid']);
+       $content['refbanner_content'] = loadTemplate('member_list_reflinks', TRUE, $OUT);
 } else {
-       // No refbanner found!
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_NO_REFBANNER_FOUND'));
+       // No refbanner found
+       $content['refbanner_content'] = returnMessage('{--MEMBER_REFERRAL_BANNER_404--}');
 }
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
+
+// Add extra content through filter
+$content['extra_content'] = runFilterChain('member_reflink_extra_content');
+
+// Load main template
+loadTemplate('member_reflink', FALSE, $content);
 
-//
+// [EOF]
 ?>