Member ref-link page swapped out to templates (#68)
[mailer.git] / inc / modules / member / what-reflinks.php
index d8e75ca5524dd3ec378f2c045b8eb0f554a40121..89d72e594f044e8d849867118c2d909b28d8ebeb 100644 (file)
@@ -49,31 +49,29 @@ 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);
 
-outputHtml("<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 />");
+// Prepare some data
+$content['userid'] = getUserId();
 
+// @TODO Move this into a filter
 if (isExtensionActive('nickname')) {
        // Add nickname link when nickname is entered
        $nick = getNickname(getUserId());
 
        if (!empty($nick)) {
                // Display nickname link
-               outputHtml("{--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
-               outputHtml("<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'] = loadTemplate('member_reflink_no_nickname', true);
        }
-}
-
-// Clicks on your reflink
-outputHtml("{--YOUR_REFCLICKS--}: <strong>".$content['ref_clicks']."</strong> {--CLICKS--}</div><br /><br />");
+} // END - if
 
 $whereStatement = " WHERE `visible`='Y'";
 if (isAdmin()) $whereStatement = '';
@@ -82,11 +80,11 @@ $result = SQL_QUERY("SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `
 if (SQL_NUMROWS($result) > 0) {
        // List available ref banners
        $OUT = ''; $SW = 2;
-       while ($content = SQL_FETCHARRAY($result)) {
-               $test = str_replace(getConfig('URL'), getConfig('PATH'), $content['url']); $size = 0;
-               if ($test == $content['url']) {
+       while ($row = SQL_FETCHARRAY($result)) {
+               $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = 0;
+               if ($test == $row['url']) {
                        // Download banner (I hope you keep the banner on same server???)
-                       $fp = sendGetRequest($content['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
@@ -99,28 +97,31 @@ if (SQL_NUMROWS($result) > 0) {
                        $size = filesize($test);
                }
 
-               if ($size > 0) $content['alternate'] .= ' ('  .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})';
+               if ($size > 0) $row['alternate'] .= ' ('  .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})';
 
                // Add some more data
-               $content['sw']     = $SW;
-               $content['userid'] = getUserId();
+               $row['sw']     = $SW;
+               $row['userid'] = getUserId();
 
                // Add row
-               $OUT .= loadTemplate('member_reflinks_row', true, $content);
+               $OUT .= loadTemplate('member_reflinks_row', true, $row);
 
                // Switchcolors
                $SW = 3 - $SW;
        } // END - while
 
        // Load final template
-       loadTemplate('member_reflinks_table', false, $OUT);
+       $content['refbanner_content'] = loadTemplate('member_reflinks_table', true, $OUT);
 } else {
        // No refbanner found!
-       loadTemplate('admin_settings_saved', false, getMessage('MEMBER_NO_REFBANNER_FOUND'));
+       $content['refbanner_content'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_REFBANNER_FOUND'));
 }
 
 // Free result
 SQL_FREERESULT($result);
 
+// Load main template
+loadTemplate('member_reflink', false, $content);
+
 // [EOF]
 ?>