One more found
[mailer.git] / surfbar.php
index 8760cb332c89782a603ed99265ca87d2c5e5a712..1dc43451c404946ce55bc829dcac3d52e915e01b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/05/2008 *
- * ===============                              Last change: 09/05/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 09/05/2008 *
+ * ===================                          Last change: 09/05/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : surfbar.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                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2011 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 *
@@ -42,9 +41,9 @@ require('inc/libs/security_functions.php');
 // Init start time
 $GLOBALS['startTime'] = microtime(true);
 
-// Set module
-$GLOBALS['module'] = 'surfbar';
-$GLOBALS['output_mode'] = 0;
+// Set module output mode
+$GLOBALS['__module'] = 'surfbar';
+$GLOBALS['output_mode'] = '0';
 $GLOBALS['header_sent'] = 3;
 
 // Load the required file(s)
@@ -56,7 +55,7 @@ setContentType('text/html');
 // Is a frame active?
 if (isGetRequestElementSet('frame')) {
        // Then we need to set header_sent to 0
-       $GLOBALS['header_sent'] = 0;
+       $GLOBALS['header_sent'] = '0';
 } // END - if
 
 // Only logged in users may use this surfbar!
@@ -69,10 +68,10 @@ if (!isMember()) {
                // Is the form sent?
                if ((isFormSent()) && (isPostRequestElementSet('id')) && (isPostRequestElementSet('password'))) {
                        // Do the login procedure
-                       $URL = doUserLogin(postRequestElement('id'), postRequestElement('password'), basename(__FILE__), basename(__FILE__) . '?code=');
+                       $url = doUserLogin(postRequestElement('id'), postRequestElement('password'), basename(__FILE__), basename(__FILE__) . '?code=');
 
                        // And redirect to the URL
-                       redirectToUrl($URL);
+                       redirectToUrl($url);
                } else {
                        // Load header
                        loadIncludeOnce('inc/header.php');
@@ -80,7 +79,7 @@ if (!isMember()) {
                        // Is there a 'code' provided?
                        if (isGetRequestElementSet('code')) {
                                // Then generate an error message
-                               loadTemplate('admin_settings_saved', false, getMessageFromErrorCode(getRequestElement('code')));
+                               displayMessage(getMessageFromErrorCode(getRequestElement('code')));
                        } // END - if
 
                        // Display login form
@@ -94,7 +93,7 @@ if (!isMember()) {
                }
        } else {
                // Redirect
-               redirectToUrl('index.php');
+               redirectToUrl('modules.php?module=index');
        }
 } // END - if
 
@@ -111,7 +110,7 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
        loadIncludeOnce('inc/header.php');
 
        // Load template
-       if (((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stop')) || (!isGetRequestElementSet('frame'))) {
+       if (((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stop2')) || (!isGetRequestElementSet('frame'))) {
                // Load template for "start" page
                loadTemplate('surfbar_frame_start');
 
@@ -121,19 +120,10 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
                // This makes the footer appear again
                unsetGetRequestElement('frame');
        } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stats')) {
-               // Get total points amount
-               $points = countSumTotalData(getUserId(), 'user_points', 'points') - countSumTotalData(getUserId(), 'user_data', 'used_points');
-
                // Prepare content
                $content = array(
-                       'points'   => translateComma($points),
-                       'online'   => SURFBAR_DETERMINE_TOTAL_ONLINE(),
-                       'reload'   => (getConfig('surfbar_stats_reload') * 1000),
-                       'c_total'  => translateComma(getConfig('surfbar_total_counter')),
-                       'c_today'  => translateComma(getConfig('surfbar_daily_counter')),
-                       'c_yester' => translateComma(getConfig('surfbar_yester_counter')),
-                       'c_week'   => translateComma(getConfig('surfbar_weekly_counter')),
-                       'c_month'  => translateComma(getConfig('surfbar_monthly_counter')),
+                       'points' => getTotalPoints(getMemberId()),
+                       'reload' => (getConfig('surfbar_stats_reload') * 1000)
                );
 
                // Load template for "stats" page
@@ -141,8 +131,7 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
        } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'textlinks')) {
                // Prepare content
                $content = array(
-                       'online'   => SURFBAR_DETERMINE_TOTAL_ONLINE(),
-                       'reload'   => (getConfig('surfbar_stats_reload') * 1000)
+                       'reload' => (getConfig('surfbar_stats_reload') * 1000)
                );
 
                // Load template for "stats" page
@@ -150,7 +139,6 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
        } else {
                // Prepare content
                $content = array(
-                       'restart'   => getConfig('surfbar_restart_time'),
                        'start'     => str_repeat('X', strlen(getConfig('surfbar_restart_time'))),
                        'autostart' => (getConfig('surfbar_autostart') == 'Y') ? 'true' : 'false'
                );
@@ -175,6 +163,9 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
                        // Then load waiting page
                        SURFBAR_RELOAD_TO_STOP_PAGE();
                } // END - if
+
+               // Load header to avoid a bug
+               loadIncludeOnce('inc/header.php');
        } else {
                // Reload to stop frame!
                SURFBAR_RELOAD_TO_STOP_PAGE();
@@ -186,37 +177,25 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
        // Prepare content
        $content = '';
 
-       // Determine template name
-       $templateName = SURFBAR_DETERMINE_TEMPLATE_NAME();
-
-       // Load header in frameset mode is the default
-       $isFrameset = true;
-
        // Frame "top" set?
        if ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'top')) {
                // Determine next id
                $nextId = SURFBAR_DETERMINE_NEXT_ID();
+               //* DEBUG: */ die('nextId='.$nextId);
 
                // Is there a valid id?
                if ($nextId > 0) {
                        // Then prepare other content
                        $content = array(
-                               'id'          => $nextId,
-                               'check'       => SURFBAR_GENERATE_VALIDATION_CODE($nextId),
-                               'salt'        => SURFBAR_GET_SALT(),
-                               'points'      => translateComma(SURFBAR_GET_REWARD($nextId)),
-                               'url'         => SURFBAR_GET_URL($nextId),
-                               'curr_reload' => SURFBAR_GET_USER_LOCKS(),
-                               'max_urls'    => SURFBAR_GET_TOTAL_URLS(),
-                               'reload'      => SURFBAR_GET_RELOAD_TIME($nextId),
-                               'xxx'         => str_repeat('X', strlen(SURFBAR_GET_RELOAD_TIME($nextId)))
+                               'url_id' => $nextId,
+                               'xxx'    => str_repeat('X', strlen(SURFBAR_GET_RELOAD_TIME($nextId))),
                        );
 
                        // Update salt (double-call lock!) and statistics
                        SURFBAR_UPDATE_SALT_STATS();
                } else {
                        // Load new URL
-                       SURFBAR_RELOAD_TO_STOP_PAGE('stop2');
+                       SURFBAR_RELOAD_TO_STOP_PAGE('stop');
                }
        } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'start')) {
                // Starter frame found so let the footer display
@@ -226,8 +205,11 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
        // Load header
        loadIncludeOnce('inc/header.php');
 
+       // Determine template name
+       $templateName = SURFBAR_DETERMINE_TEMPLATE_NAME();
+
        // Load that template
-       //* DEBUG: */ die("templateName={$templateName}<br />\n<strong>content</strong>=<pre>".print_r($content, true)."</pre>");
+       //* DEBUG: */ die('templateName=' . $templateName . '<br /><strong>content</strong>=<pre>' . print_r($content, true) . '</pre>');
        loadTemplate($templateName, false, $content);
 }