Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / modules / guest / what-stats.php
index 24cb58bfd3b6d6e21bedfe20a4823f299651f0a8..44770bda678ef9db05ed253d987bb2b2ce92ec89 100644 (file)
@@ -17,7 +17,7 @@
  * 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                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
-}
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR('guest', __FILE__);
+addMenuDescription('guest', __FILE__);
 
 // Derterminate which stats we want and set mode and title for the link below stats block
-if (!REQUEST_ISSET_GET('mode')) REQUEST_SET_GET('mode', strtolower(getConfig('guest_stats')));
+if (!isGetRequestElementSet('mode')) setRequestGetElement('mode', strtolower(getConfig('guest_stats')));
+
+// Set config temporarily
+setConfigEntry('guest_stats', strtoupper(getRequestElement('mode')));
 
-switch (REQUEST_GET('mode')) {
+switch (getRequestElement('mode')) {
        case 'members' :
-               setConfigEntry('guest_stats', 'MEMBERS');
                $lmode = 'modules';
-               $ltitle = getMessage('GUEST_STATS_MODULES');
                break;
 
        case 'modules' :
-               setConfigEntry('guest_stats', 'MODULES');
                $lmode = 'members';
-               $ltitle = getMessage('GUEST_STATS_MEMBERS');
                break;
 
        case 'inactive':
-               setConfigEntry('guest_stats', 'INACTIVE');
                $lmode = 'inactive';
-               $ltitle = getMessage('GUEST_STATS_INACTIVE');
+               break;
+
+       default:
+               // Unsupported mode
+               debug_report_bug(sprintf("Unsupported mode <strong>%s</strong> detected.", secureString(getRequestElement('mode'))));
                break;
 }
 
-switch (getConfig('guest_stats'))
-{
+// Set link title
+$ltitle = getMessage('GUEST_STATS_' . strtoupper($lmode));
+
+// @TODO This can be rewritten in a dynamic include
+switch (getConfig('guest_stats')) {
        case 'MEMBERS': // Statistics about your members
                // Members yesterday / today online
-               $ymem = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE last_online >= ".getConfig('START_YDAY')." AND `last_online` < ".getConfig('START_TDAY')." AND `status`='CONFIRMED'", __FILE__, __LINE__));
-               $tmem = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE last_online >= ".getConfig('START_TDAY')." AND `status`='CONFIRMED'", __FILE__, __LINE__));
+               $ymem = SQL_NUMROWS(SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `last_online` >= ".getConfig('START_YDAY')." AND `last_online` < ".getConfig('START_TDAY')." AND `status`='CONFIRMED'", __FILE__, __LINE__));
+               $tmem = SQL_NUMROWS(SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `last_online` >= ".getConfig('START_TDAY')." AND `status`='CONFIRMED'", __FILE__, __LINE__));
 
                // Yesterday / today registered
-               $yreg = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE joined >= ".getConfig('START_YDAY')." AND joined < ".getConfig('START_TDAY'), __FILE__, __LINE__));
-               $treg = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE joined >= ".getConfig('START_TDAY'), __FILE__, __LINE__));
+               $yreg = SQL_NUMROWS(SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `joined` >= ".getConfig('START_YDAY')." AND `joined` < ".getConfig('START_TDAY'), __FILE__, __LINE__));
+               $treg = SQL_NUMROWS(SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `joined` >= ".getConfig('START_TDAY'), __FILE__, __LINE__));
 
                // Only males / females
-               $male   = GET_TOTAL_DATA('M', 'user_data', 'userid', 'gender', true, " AND `status`='CONFIRMED'");
-               $female = GET_TOTAL_DATA('F', 'user_data', 'userid', 'gender', true, " AND `status`='CONFIRMED'");
+               $male   = countSumTotalData('M', 'user_data', 'userid', 'gender', true, " AND `status`='CONFIRMED'");
+               $female = countSumTotalData('F', 'user_data', 'userid', 'gender', true, " AND `status`='CONFIRMED'");
 
                // Unconfirmed accounts
-               $unconfirmed = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE status != 'CONFIRMED'", __FILE__, __LINE__));
+               $unconfirmed = SQL_NUMROWS(SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status` != 'CONFIRMED'", __FILE__, __LINE__));
 
                // Total members
                $total = $male + $female;
@@ -99,38 +103,38 @@ switch (getConfig('guest_stats'))
                        if ($idx < 10) $month = '0'.$idx;
 
                        // Count months
-                       $months[$month] = GET_TOTAL_DATA(bigintval($month), 'user_data', 'userid', 'birth_month', true, " AND `status`='CONFIRMED'");
-               }
+                       $months[$month] = countSumTotalData(bigintval($month), 'user_data', 'userid', 'birth_month', true, " AND `status`='CONFIRMED'");
+               } // END - for
 
                // Members in categories
-               $result = SQL_QUERY("SELECT id, cat FROM `{!_MYSQL_PREFIX!}_cats` WHERE `visible`='Y' ORDER BY `id`", __FILE__, __LINE__);
+               $result = SQL_QUERY("SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `visible`='Y' ORDER BY `id` ASC", __FILE__, __LINE__);
 
                // Load categories first
                $cats = array(); $cat_cnt = array();
+
                // @TODO This can be somehow rewritten
                while ($content = SQL_FETCHARRAY($result)) {
                        // Simple...
                        $cats[$content['id']] = $content['cat'];
-               }
+               } // END - while
 
                // Now we have all categories loaded, count members
                foreach ($cats as $id => $dummy) {
                        // We only need id and nothing more to count...
-                       $cat_cnt[$id] = GET_TOTAL_DATA(bigintval($id), 'user_cats', 'id', 'cat_id', true);
-               }
+                       $cat_cnt[$id] = countSumTotalData(bigintval($id), 'user_cats', 'id', 'cat_id', true);
+               } // END - foreach
 
                // Prepare data for the template
-               // @TODO Rewrite all these constants
-               define('__TOTAL_USERS' , $total);
-               define('__UNCONFIRMED' , $unconfirmed);
-               define('__MALE_COUNT'  , $male);
-               define('__FEMALE_COUNT', $female);
-               define('__TMEM_COUNT'  , $tmem);
-               define('__YMEM_COUNT'  , $ymem);
-               define('__TREG_COUNT'  , $treg);
-               define('__YREG_COUNT'  , $yreg);
-               define('__LMODE_VALUE' , $lmode);
-               define('__LINK_TITLE'  , $ltitle);
+               $content['total_users']   = $total;
+               $content['unconfirmed']   = $unconfirmed;
+               $content['total_males']   = $male;
+               $content['total_females'] = $female;
+               $content['tmem_count']    = $tmem;
+               $content['ymem_count']    = $ymem;
+               $content['treg_count']    = $treg;
+               $content['yreg_count']    = $yreg;
+               $content['lmode']         = $lmode;
+               $content['ltitle']        = $ltitle;
 
                // Generate monthly stats
                $SW = 2; $r2 = ' right2'; $l = 'll'; $r = 'lr'; $OUT = '';
@@ -138,16 +142,16 @@ switch (getConfig('guest_stats'))
                        if ($SW == 2) $OUT .= "<tr>\n";
 
                        // Prepare data for template
-                       $content = array(
-                       'l_class'  => $l,
-                       'm_descr'  => $GLOBALS['month_descr'][$month],
-                       'r_class'  => $r,
-                       'r2_class' => $r2,
-                       'cnt'      => $cnt
+                       $data = array(
+                               'l_class'  => $l,
+                               'm_descr'  => $GLOBALS['month_descr'][$month],
+                               'r_class'  => $r,
+                               'r2_class' => $r2,
+                               'cnt'      => $cnt
                        );
 
                        // Load row template
-                       $OUT .= LOAD_TEMPLATE("guest_stats_month_row", true, $content);
+                       $OUT .= loadTemplate('guest_stats_month_row', true, $data);
 
                        if ($SW == 2) {
                                $r2 = '';
@@ -159,88 +163,84 @@ switch (getConfig('guest_stats'))
                        }
                        $SW = 3 - $SW;
                }
-               define('__MONTH_STATS_ROWS', $OUT);
+               $content['month_rows'] = $OUT;
 
                // Generate category stats
                $OUT = ''; $SW = 2;
                foreach ($cat_cnt as $id => $cnt) {
                        // Prepare data for the template
-                       $content = array(
-                       'sw'  => $SW,
-                       'cat' => $cats[$id],
-                       'cnt' => $cnt,
+                       $data = array(
+                               'sw'  => $SW,
+                               'cat' => $cats[$id],
+                               'cnt' => $cnt,
                        );
 
                        // Load row template and switch colors
-                       $OUT .= LOAD_TEMPLATE('guest_stats_cats_row', true, $content);
+                       $OUT .= loadTemplate('guest_stats_cats_row', true, $data);
                        $SW = 3 - $SW;
                }
-               define('__CATS_STATS_ROWS', $OUT);
+               $content['cats_rows'] = $OUT;
 
                // Load final template
-               LOAD_TEMPLATE('guest_stats_member');
+               loadTemplate('guest_stats_member', false, $content);
                break;
 
        case 'MODULES': // TOP10 module clicks
-               $AND = '';
-               if (!IS_ADMIN()) $AND = " AND `locked`='N' AND `visible`='Y'";
-               $guest_t10 = SQL_QUERY("SELECT counter, title FROM `{!_MYSQL_PREFIX!}_guest_menu` WHERE counter > 0".$AND." ORDER BY counter DESC LIMIT 0,10", __FILE__, __LINE__);
-               $mem_t10   = SQL_QUERY("SELECT counter, title FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE counter > 0".$AND." ORDER BY counter DESC LIMIT 0,10", __FILE__, __LINE__);
-               $OUT = '';
-               if ((SQL_NUMROWS($guest_t10) > 0) || (SQL_NUMROWS($mem_t10) > 0)) {
-                       // Output header
-                       // @TODO Rewrite this to one template and $OUT .= ....
-                       OUTPUT_HTML("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"guest_table dashed\" width=\"310\">
-<tr>
-  <td align=\"center\" class=\"guest_stats_title bottom2\" colspan=\"2\"><strong>{--GUEST_TOPTEN_STATS--}</strong></td>
-</tr>");
-               }
+               // Admins may see all menus
+               $AND = " AND `locked`='N' AND `visible`='Y'";
+               if (isAdmin()) $AND = '';
+
+               // Query for guest and member menus
+               $guest_t10 = SQL_QUERY("SELECT `counter`, `title` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `counter` > 0".$AND." ORDER BY `counter` DESC LIMIT 0,10", __FILE__, __LINE__);
+               $mem_t10   = SQL_QUERY("SELECT `counter`, `title` FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `counter` > 0".$AND." ORDER BY `counter` DESC LIMIT 0,10", __FILE__, __LINE__);
+               $OUT = ''; 
 
                if (SQL_NUMROWS($guest_t10) > 0) {
                        // Guest clicks
-                       OUTPUT_HTML("<tr>
-  <td align=\"center\" class=\"guest_title2 bottom2\" colspan=\"2\">{--GUEST_TOP_GUEST_STATS--}</td>
-</tr>");
+                       $OUT .= loadTemplate('guest_stats_header', true, getMessage('GUEST_TOP_GUEST_STATS'));
                        $SW = 2;
                        while ($content = SQL_FETCHARRAY($guest_t10)) {
-                               OUTPUT_HTML("<tr>
-  <td class=\"switch_sw".$SW." bottom2 right2\" align=\"right\" width=\"250\">".$content['title']."&nbsp;</td>
-  <td class=\"switch_sw".$SW." bottom2\" width=\"50\">&nbsp;".$content['counter']."</td>
-</tr>");
+                               $content['sw'] = $SW;
+
+                               // Load row template
+                               $OUT .= loadTemplate('guest_stats_row', true, $content);
                                $SW = 3 - $SW;
-                       }
-               }
+                       } // END - while
+               } // END - if
 
-               if (SQL_NUMROWS($guest_t10) > 0) {
-                       // Guest clicks
-                       OUTPUT_HTML("<tr>
-  <td align=\"center\" class=\"guest_title2 bottom2\" colspan=\"2\">{--GUEST_TOP_MEMBER_STATS--}</td>
-</tr>");
+               if (SQL_NUMROWS($mem_t10) > 0) {
+                       // Member clicks
+                       $OUT .= loadTemplate('guest_stats_header', true, getMessage('GUEST_TOP_MEMBER_STATS'));
                        $SW = 2;
                        while ($content = SQL_FETCHARRAY($mem_t10)) {
-                               OUTPUT_HTML("<tr>
-  <td class=\"switch_sw".$SW." bottom2 right2\" align=\"right\" width=\"250\">".$content['title']."&nbsp;</td>
-  <td class=\"switch_sw".$SW." bottom2\" width=\"50\">&nbsp;".$content['counter']."</td>
-</tr>");
+                               $content['sw'] = $SW;
+
+                               // Load row template
+                               $OUT .= loadTemplate('guest_stats_row', true, $content);
                                $SW = 3 - $SW;
-                       }
-               }
+                       } // END - while
+               } // END - if
 
                if ((SQL_NUMROWS($guest_t10) > 0) || (SQL_NUMROWS($mem_t10) > 0)) {
-                       // Output footer
-                       OUTPUT_HTML("<tr>
-  <td align=\"center\" class=\"guest_stats_footer\" colspan=\"2\">
-    <a href=\"{?URL?}/modules.php?module=index&amp;what=stats&amp;mode=".$lmode."\">".$ltitle."</a>
-  </td>
-</tr>
-</table>");
+                       // Prepare content
+                       $content = array(
+                               'rows'   => $OUT,
+                               'lmode'  => $lmode,
+                               'ltitle' => $ltitle
+                       );
+
+                       // Load final template
+                       loadTemplate('guest_stats_table', false, $content);
+               } else {
+                       // No clicks detected
+                       loadTemplate('admin_settings_saved', false, getMessage('GUEST_STATS_NO_CLICKS'));
                }
                break;
 
        case 'INACTIVE': // Deactivated stats
-               LOAD_TEMPLATE('admin_settings_saved', false, "<strong>{--GUEST_STATS_DEACTIVATED--}</strong>");
+               loadTemplate('admin_settings_saved', false, getMessage('GUEST_STATS_DEACTIVATED'));
                break;
 }
 
-//
+// [EOF]
 ?>