]> git.mxchange.org Git - mailer.git/blobdiff - show_bonus.php
Code style changed, ext-user continued:
[mailer.git] / show_bonus.php
index bef4d6267481133f2d672d8f66fbcd987a857b1e..d478f9a9aebfbd580c19af11a8c170eef1a30f8e 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 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 *
 require('inc/libs/security_functions.php');
 
 // Init start time
-$GLOBALS['startTime'] = microtime(true);
+$GLOBALS['__start_time'] = microtime(TRUE);
 
 // Set this because we have no module in URI
-$GLOBALS['module'] = 'show_bonus';
-$GLOBALS['output_mode'] = '0';
+$GLOBALS['__module']      = 'show_bonus';
+$GLOBALS['__output_mode'] = '0';
 
 // Load the required file(s)
 require('inc/config-global.php');
@@ -78,7 +78,9 @@ if ((isValidUserId(getRequestElement('userid'))) && (getRequestElement('d') > 0)
        if (!empty($t)) {
                // Check for data
                $result = SQL_QUERY_ESC("SELECT
-       d.`userid`, b.`level`, b.`points`
+       d.`userid`,
+       b.`level`,
+       b.`points`
 FROM
        `{?_MYSQL_PREFIX?}_user_data` AS d
 INNER JOIN
@@ -109,31 +111,31 @@ LIMIT 1",
                        $content = merge_array($content, $GLOBALS['ranking_content']);
 
                        // Load pre-template
-                       $content['message'] = loadTemplate('show_bonus_msg', true, $content);
+                       $content['message'] = loadTemplate('show_bonus_msg', TRUE, $content);
                } else {
                        // No data found
-                       $content['message'] = '<span class="notice">{--BONUS_SHOW_NO_DATA--}</span>';
+                       $content['message'] = '<span class="bad">{--BONUS_SHOW_NO_DATA--}</span>';
                }
 
                // Free memory
                SQL_FREERESULT($result);
        } else {
                // Wrong type entered
-               $content['message'] = '<span class="notice">{--BONUS_SHOW_WRONG_TYPE--}</span>';
+               $content['message'] = '<span class="bad">{--BONUS_SHOW_WRONG_TYPE--}</span>';
        }
 } else {
        // Wrong call!
-       $content['message'] = '<span class="notice">{--BONUS_SHOW_WRONG_CALL--}</span>';
+       $content['message'] = '<span class="bad">{--BONUS_SHOW_WRONG_CALL--}</span>';
 }
 
 // Load send_bonus header template (for your banners, e.g.?)
-$content['header'] = loadTemplate('show_bonus_header', true);
+$content['header'] = loadTemplate('show_bonus_header', TRUE);
 
 // Load show_bonus footer template (for your banners, e.g.?)
-$content['footer'] = loadTemplate('show_bonus_footer', true);
+$content['footer'] = loadTemplate('show_bonus_footer', TRUE);
 
 // Load final template
-loadTemplate('show_bonus', false, $content);
+loadTemplate('show_bonus', FALSE, $content);
 
 // Include footer
 loadIncludeOnce('inc/footer.php');