]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflinks.php
Ref link fixed, nickname fixed, several rewrites, TODOs.txt updated:
[mailer.git] / inc / modules / member / what-reflinks.php
index e9dcc54c19449ec91ad1230bd1c5283b911a6c9f..8688d2a476e98f3fc5a2a117ab32d707adc36b25 100644 (file)
@@ -6,11 +6,16 @@
  * -------------------------------------------------------------------- *
  * File              : what-reflinks.php                                *
  * -------------------------------------------------------------------- *
- * Short description : Referral links                                   *
+ * Short description : Referal links                                    *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Referral-Links                                   *
+ * Kurzbeschreibung  : Referal-Links                                    *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $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 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+if (!defined('__SECURITY')) {
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
-}
- elseif (!IS_LOGGED_IN())
-{
-       LOAD_URL("modules.php?module=index");
+} elseif (!IS_MEMBER()) {
+       redirectToUrl('modules.php?module=index');
 }
 
 // Add description as navigation point
-ADD_DESCR("member", basename(__FILE__));
-
-OPEN_TABLE("90%", "member_table member_content_align", "");
+ADD_DESCR('member', __FILE__);
 
-// Load current referral 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);
+// 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__);
+$content = SQL_FETCHARRAY($result);
 SQL_FREERESULT($result);
 
-OUTPUT_HTML("<FONT class=\"tiny\">".YOUR_PERSONAL_REFLINK.":<br />
-<STRONG><A href=\"".URL."/ref.php?ref=".$GLOBALS['userid']."\" target=\"_blank\">".URL."/ref.php?ref=".$GLOBALS['userid']."</A></STRONG><br />
+OUTPUT_HTML("<div class=\"tiny\">{--YOUR_PERSONAL_REFLINK--}:<br />
+<strong><a href=\"{!URL!}/ref.php?refid=".getUserId()."\" target=\"_blank\">{!URL!}/ref.php?ref=".getUserId()."</a></strong><br />
 <br />");
 
-if (EXT_IS_ACTIVE("nickname"))
-{
+if (EXT_IS_ACTIVE('nickname')) {
        // Add nickname link when nickname is entered
-       $nick = NICKNAME_GET_NICK($GLOBALS['userid']);
+       $nick = NICKNAME_GET_NICK(getUserId());
 
-       if (!empty($nick))
-       {
+       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 />
+               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 />");
-       }
-        else
-       {
+       } else {
                // Display link to nickname form
-               OUTPUT_HTML("<STRONG 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>");
+               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>");
        }
 }
 
 // Clicks on your reflink
-OUTPUT_HTML(YOUR_REFCLICKS.": <STRONG>".$c."</STRONG> ".CLICKS."</FONT><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__);
+OUTPUT_HTML("{--YOUR_REFCLICKS--}: <strong>".$content['ref_clicks']."</strong> {--CLICKS--}</div><br /><br />");
 
-if (SQL_NUMROWS($result) > 0)
-{
+$whereStatement = " WHERE `visible`='Y'";
+if (IS_ADMIN()) $whereStatement = '';
+$result = SQL_QUERY("SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{!_MYSQL_PREFIX!}_refbanner`", __FILE__, __LINE__);
+
+if (SQL_NUMROWS($result) > 0) {
        // 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 = ''; $SW = 2;
+       while ($content = SQL_FETCHARRAY($result)) {
+               $test = str_replace(constant('URL'), constant('PATH'), $content['url']); $size = 0;
+               if ($test == $content['url']) {
                        // Download banner (I hope you keep the banner on same server???)
-                       $fp = @file($url); $file = "";
-                       if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0))
-                       {
+                       $fp = sendGetRequest($content['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)) {
+                               foreach ($fp as $f) {
+                                       $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,
-               );
+
+               if ($size > 0) $content['alternate'] .= ' ('  .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})';
+
+               // Add some more data
+               $content['sw']     = $SW;
+               $content['userid'] = getUserId();
 
                // Add row
-               $OUT .= LOAD_TEMPLATE("member_reflinks_row", true, $content);
+               $OUT .= LOAD_TEMPLATE('member_reflinks_row', true, $content);
 
                // Switchcolors
                $SW = 3 - $SW;
-       }
+       } // END - while
 
        define('__REFLINKS_ROWS', $OUT);
 
        // Load final template
-       LOAD_TEMPLATE("member_reflinks_table", false, $GLOBALS['userid']);
+       LOAD_TEMPLATE('member_reflinks_table', false, getUserId());
+} else {
+       // No refbanner found!
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_NO_REFBANNER_FOUND'));
 }
 
 // Free result
 SQL_FREERESULT($result);
 
-CLOSE_TABLE();
-//
+// [EOF]
 ?>