Deprecated variables for templates removed, mor EL-rewrites, getMessage() rewritten:
[mailer.git] / inc / modules / admin / what-list_user.php
index 1138d1aa7ad8348a56940a2ea3002724da9ca79c..5c8220c82393724919674abd414c5c35aa03569d 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/28/2003 *
- * ===============                              Last change: 08/18/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 09/28/2003 *
+ * ===================                          Last change: 08/18/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-list_user.php                               *
@@ -17,7 +17,8 @@
  * 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                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * 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')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif ((!EXT_IS_ACTIVE("user")) || (GET_EXT_VERSION("user") == "")) {
-       // Missing extension!
-       addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "user");
-       return;
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
-
-// Init title with "all accounts"
-$listHeader = getMessage('ADMIN_ALL_ACCOUNTS');
-if (REQUEST_ISSET_GET(('status'))) {
-       // Set title according to the "status"
-       $listHeader = getMessage(sprintf("ADMIN_LIST_STATUS_%s_ACCOUNTS", strtoupper(REQUEST_GET(('status')))));
-} elseif (REQUEST_ISSET_GET(('mode'))) {
-       // Set title according to the "mode"
-       $listHeader = getMessage(sprintf("ADMIN_LIST_MODE_%s_ACCOUNTS", strtoupper(REQUEST_GET(('mode')))));
-}
+addMenuDescription('admin', __FILE__);
 
-// Remember it
-define('__TITLE', $listHeader);
+if ((!isExtensionInstalled('user')) || (!isExtensionActive('user'))) {
+       // Missing extension!
+       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('user'));
+       return;
+} // END - if
 
 // Init variables
-$MORE = ", userid"; $colspan = "4";
+$MORE = '';
+$colspan = 4;
 
 // Add nickname if extension is found&active
-if (EXT_IS_ACTIVE("nickname")) { $MORE = ", nickname"; }
+// @TODO Rewrite these if-blocks in a filter
+if (isExtensionActive('nickname')) {
+       // Add nickname
+       $MORE .= ", `nickname`";
+} else {
+       $MORE .= ", `userid`";
+}
 
 // Add random confirmed if extension version matches
-if (GET_EXT_VERSION("user") >= "0.3.4") {
+if (isExtensionInstalledAndNewer('user', '0.3.4')) {
        // Add it...
-       $MORE .= ", rand_confirmed";
+       $MORE .= ", `rand_confirmed`";
 
        // Add lock reason?
-       if (GET_EXT_VERSION("user") >= "0.3.5") {
+       if (isExtensionInstalledAndNewer('user', '0.3.5')) {
                // Add them...
-               $MORE .= ", lock_reason, UNIX_TIMESTAMP(`lock_timestamp`) AS lock_timestamp";
+               $MORE .= ", `lock_reason`, UNIX_TIMESTAMP(`lock_timestamp`) AS `lock_timestamp`";
        } // END - if
 } // END - if
 
-// Is the extension "country" installed?
-if (EXT_IS_ACTIVE("country")) {
+// Is the extension 'country' installed?
+if (isExtensionActive('country')) {
        // Add country code
-       $MORE .= ", country_code";
+       $MORE .= ", `country_code`";
 } else {
        // Add direct value
-       $MORE .= ", country";
+       $MORE .= ", `country`";
 }
 
-// Init unset data (bad that we change $_GET here!)
-if (!REQUEST_ISSET_GET(('letter'))) { REQUEST_SET_GET('letter', getMessage('_ALL2')); }
-if (!REQUEST_ISSET_GET(('sortby'))) { REQUEST_SET_GET('sortby', "userid");            }
-if (!REQUEST_ISSET_GET(('page')))   { REQUEST_SET_GET('page'  , "1");                 }
+// Init unset data
+if (!isGetRequestParameterSet('letter')) { setGetRequestParameter('letter', getMessage('_ALL2')); }
+if (!isGetRequestParameterSet('sortby')) { setGetRequestParameter('sortby', 'userid');            }
+if (!isGetRequestParameterSet('page'))   { setGetRequestParameter('page'  , 1);                 }
 
 // Set base URL
-$BASE = "[<a href=\"{!URL!}/modules.php?module=admin";
+$base = '[<a href="{%url=modules.php?module=admin';
 
-if (REQUEST_ISSET_GET(('uid'))) {
-       // Secure the user ID
-       $uid = bigintval(REQUEST_GET('uid'));
+if (isGetRequestParameterSet('userid')) {
+       // Secure the user id
+       $userid = bigintval(getRequestParameter('userid'));
 
        // Does the account exists?
-       $result_user = SQL_QUERY_ESC("SELECT gender, surname, family, street_nr, zip, city, country, email, birth_day, birth_month, birth_year, max_mails, receive_mails, refid, status, REMOTE_ADDR, last_online, last_module, ref_clicks, total_logins, used_points, emails_sent, joined, last_update, last_profile_sent, notified, ref_payout, emails_received, mails_confirmed".$MORE."
-FROM `{!_MYSQL_PREFIX!}_user_data`
-WHERE userid=%s
+       $result_user = SQL_QUERY_ESC("SELECT
+       `gender`, `surname`, `family`, `street_nr`, `zip`, `city`, `country`, `email`, `birth_day`, `birth_month`, `birth_year`, `max_mails`, `receive_mails`, `refid`, `status`, `REMOTE_ADDR`, `last_online`, `last_module`, `ref_clicks`, `total_logins`, `used_points`, `emails_sent`, `joined`, `last_update`, `last_profile_sent`, `notified`, `ref_payout`, `emails_received`, `mails_confirmed`".$MORE."
+FROM
+       `{?_MYSQL_PREFIX?}_user_data`
+WHERE
+       `userid`=%s
 LIMIT 1",
-               array($uid), __FILE__, __LINE__);
+               array($userid), __FILE__, __LINE__);
+
+       // User found?
        if (SQL_NUMROWS($result_user) == 1) {
                // Account found!
-               $DATA  = SQL_FETCHARRAY($result_user);
+               $content  = SQL_FETCHARRAY($result_user);
 
                // Get count/sum of refs, selected categories, unconfirmed mails
-               $REFS  = GET_TOTAL_DATA($uid, "refsystem", "counter");
-               $CATS  = GET_TOTAL_DATA($uid, "user_cats", "id", "userid", true);
-               $LINKS = GET_TOTAL_DATA($uid, "user_links", "id", "userid", true);
+               $content['refs']  = countSumTotalData($userid, 'refsystem' , 'counter');
+               $content['cats']  = countSumTotalData($userid, 'user_cats' , 'id', 'userid', true);
+               $content['links'] = countSumTotalData($userid, 'user_links', 'id', 'userid', true);
 
                // Add links to the numbers
-               if ($LINKS > 0) $LINKS = $BASE."&amp;what=list_links&amp;uid=".$uid."\">".$LINKS."</a>]";
-               if ($DATA['refid'] > 0) $DATA['refid'] = $BASE."&amp;what=list_user&amp;uid=".$DATA['refid']."\">".$DATA['refid']."</a>]";
-               if (empty($DATA['last_module'])) $DATA['last_module'] = "---";
-               if ($REFS > 0) $REFS = $BASE."&amp;what=list_refs&amp;uid=".$uid."\">".$REFS."</a>]";
-               if ($CATS > 0) $CATS = $BASE."&amp;what=list_cats&amp;uid=".$uid."\">".$CATS."</a>]";
+               if ($content['links'] > 0) $content['links'] = $base . '&amp;what=list_links&amp;userid=' . $userid . '%}">' . $content['links'] . '</a>]';
+               if (isValidUserId($content['refid'])) $content['refid'] = $base . '&amp;what=list_user&amp;userid=' . $content['refid'] . '%}">'.$content['refid'] . '</a>]';
+               if ($content['refs']  > 0) $content['refs']  = $base . '&amp;what=list_refs&amp;userid=' . $userid . '%}">' . translateComma($content['refs']) . '</a>]';
+               if ($content['cats']  > 0) $content['cats']  = $base . '&amp;what=list_cats&amp;userid=' . $userid . '%}">' . translateComma($content['cats']) . '</a>]';
+
+               // Fix empty module
+               if (empty($content['last_module'])) $content['last_module'] = '---';
 
                // Calculate timestamp for birthday
-               $stamp = mktime(0, 0, 0, $DATA['birth_month'], $DATA['birth_day'], $DATA['birth_year']);
+               $stamp = mktime(0, 0, 0, $content['birth_month'], $content['birth_day'], $content['birth_year']);
 
                // Is this above zero?
                if ($stamp > 0) {
                        // Then use it
-                       define('_BIRTHDAY', MAKE_DATETIME($stamp, "3"));
+                       $content['birthday'] = generateDateTime($stamp, 3);
                } else {
                        // Zero or below so set zero!
-                       define('_BIRTHDAY', MAKE_DATETIME(0, "3"));
+                       $content['birthday'] = generateDateTime(0, 3);
                }
 
                // Prepare data for template
-               define('_REFS' , $REFS);
-               define('_CATS' , $CATS);
-               define('_LINKS', $LINKS);
-               define('_ADMIN_LINKS', MEMBER_ACTION_LINKS($uid, $DATA['status']));
-               $DATA['gender']            = TRANSLATE_GENDER($DATA['gender']);
-               $DATA['email_link']        = CREATE_EMAIL_LINK($DATA['email'], "user_data");
-               $DATA['status']            = TRANSLATE_STATUS($DATA['status']);
-               $DATA['last_online']       = MAKE_DATETIME($DATA['last_online'], "0");
-               $DATA['used_points']       = TRANSLATE_COMMA($DATA['used_points']);
-               if ($DATA['emails_sent'] > 0) $DATA['emails_sent'] = $BASE."&amp;what=email_details&amp;uid=".$uid."\">".TRANSLATE_COMMA($DATA['emails_sent'])."</a>]";
-               $DATA['joined']            = MAKE_DATETIME($DATA['joined'], "0");
-               $DATA['last_update']       = MAKE_DATETIME($DATA['last_update'], "0");
-               $DATA['last_profile_sent'] = MAKE_DATETIME($DATA['last_profile_sent'], "0");
-               $DATA['total']             = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points"));
-               $DATA['locked']            = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "locked_points"));
-               $DATA['lock_timestamp']    = MAKE_DATETIME($DATA['lock_timestamp'], "2");
+               $content['email_link']        = generateEmailLink($content['email'], 'user_data');
+               $content['last_online']       = generateDateTime($content['last_online'], 0);
+               if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&amp;what=email_details&amp;userid=' . $userid . '%}">' . translateComma($content['emails_sent']) . '</a>]';
+               $content['joined']            = generateDateTime($content['joined'], 0);
+               $content['last_update']       = generateDateTime($content['last_update'], 0);
+               $content['last_profile_sent'] = generateDateTime($content['last_profile_sent'], 0);
+               $content['total']             = countSumTotalData($userid, 'user_points', 'points');
+               $content['locked']            = countSumTotalData($userid, 'user_points', 'locked_points');
+               $content['lock_timestamp']    = generateDateTime($content['lock_timestamp'], 2);
 
                // Is the lock reason not set?
-               if (!isset($DATA['lock_reason'])) $DATA['lock_reason'] = "---";
+               if (!isset($content['lock_reason'])) $content['lock_reason'] = '---';
 
                // Nickname inclusion?
                // @TODO Rewrite these to filters
-               if (EXT_IS_ACTIVE("nickname")) {
-                       // Nickname not set or invalid? Then 
-                       if ((empty($DATA['nickname'])) || ($DATA['nickname'] == $uid)) $DATA['nickname'] = "---";
+               if (isExtensionActive('nickname')) {
+                       // Nickname not set or invalid? Then
+                       if ((empty($content['nickname'])) || ($content['nickname'] == $userid)) $content['nickname'] = '---';
                } else {
                        // Extension not found
-                       $DATA['nickname'] = getMessage('EXT_NICKNAME_404');
+                       $content['nickname'] = getMessage('EXT_NICKNAME_404');
                }
 
-               // Is the user extension newer?
-               if (GET_EXT_VERSION("user") >= "0.3.4") {
-                       // Then "translate" the number
-                       $DATA['rand_confirmed'] = TRANSLATE_COMMA($DATA['rand_confirmed']);
-               } // END - if
-
                // Clickrate
-               $DATA['click_rate'] = 0;
-               if ($DATA['emails_received'] > 0) {
-                       $DATA['click_rate'] = TRANSLATE_COMMA($DATA['mails_confirmed'] / $DATA['emails_received'] * 100);
+               $content['click_rate'] = '0';
+               if ($content['emails_received'] > 0) {
+                       $content['click_rate'] = ($content['mails_confirmed'] / $content['emails_received'] * 100);
                } // END - if
 
-               // "Translate" more data
-               $DATA['mails_confirmed'] = TRANSLATE_COMMA($DATA['mails_confirmed']);
-               $DATA['emails_received'] = TRANSLATE_COMMA($DATA['emails_received']);
-
-               // Is the extension "country" installed?
-               if (EXT_IS_ACTIVE("country")) {
+               // Is the extension 'country' installed?
+               if (isExtensionActive('country')) {
                        // Then overwrite country information
-                       $DATA['country'] = COUNTRY_GENERATE_INFO($DATA['country_code']);
-               } elseif ($DATA['country'] == 0) {
-                       // Zero ID???
-                       $DATA['country'] = "???";
+                       $content['country'] = generateCountryInfo($content['country_code']);
+               } elseif ($content['country'] == '0') {
+                       // Zero id???
+                       $content['country'] = '???';
                }
 
+               // Add userid
+               $content['userid'] = $userid;
+
                // Load user-details template
-               LOAD_TEMPLATE("admin_user_details", false, $uid);
+               loadTemplate('admin_user_details', false, $content);
        } else {
                // Account does not exist!
-               LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('ADMIN_MEMBER_404'), $uid));
+               loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_MEMBER_404', $userid));
        }
 
        // Free the result
        SQL_FREERESULT($result_user);
 } else {
-       $whereStatement = "";
-       if ((REQUEST_GET('letter') != getMessage('_ALL2')) && (REQUEST_GET('letter') != getMessage('_OTHERS')) && (REQUEST_ISSET_GET(('letter')))) {
+       $whereStatement = '';
+       if ((getRequestParameter('letter') != getMessage('_ALL2')) && (getRequestParameter('letter') != getMessage('_OTHERS')) && (isGetRequestParameterSet('letter'))) {
                // List only persons w
-               $whereStatement = " WHERE family LIKE '".REQUEST_GET('letter')."%'";
+               $whereStatement = " WHERE `family` LIKE '".getRequestParameter('letter') . "%'";
        } // END - if
-       if (REQUEST_GET('sortby') == "family_name") REQUEST_SET_GET('sortby', "family");
 
        // Parse the status or mode parameter
-       if (REQUEST_ISSET_GET(('status'))) {
+       if (isGetRequestParameterSet(('status'))) {
                // Is a WHERE statement already there?
                if (!empty($whereStatement)) {
                        // Then append the status column
-                       $whereStatement .= sprintf(" AND `status`='%s'", SQL_ESCAPE(strip_tags(strtoupper(REQUEST_GET('status')))));
+                       $whereStatement .= sprintf(" AND `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status')))));
                } else {
                        // Start a new one
-                       $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(strip_tags(strtoupper(REQUEST_GET('status')))));
+                       $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status')))));
                }
-       } elseif (REQUEST_ISSET_GET(('mode'))) {
+       } elseif (isGetRequestParameterSet('mode')) {
                // Choose what we need to list
-               switch (REQUEST_GET('mode')) {
-                       case "norefs": // Users w/o refs
+               switch (getRequestParameter('mode')) {
+                       case 'norefs': // Users w/o refs
                                if (!empty($whereStatement)) {
                                        // Add AND statement
-                                       $whereStatement .= " AND refid=0";
+                                       $whereStatement .= " AND `refid`=0";
                                } else {
                                        // Add WHERE statement
-                                       $whereStatement = " WHERE refid=0";
+                                       $whereStatement = " WHERE `refid`=0";
                                }
                                break;
 
                        default: // Invalid list mode
-                               DEBUG_LOG(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", REQUEST_GET(('mode'))));
+                               logDebugMessage(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", getRequestParameter('mode')));
                                break;
-               }
-       } // END = if
+               } // END - switch
+       } // END - if
+
+       // Generate master query string
+       $sql = sprintf("SELECT `userid`, `gender`, `surname`, `family`, `email`, `REMOTE_ADDR`, `refid`, `status`, `emails_sent`, `mails_confirmed`, `emails_received`" . $MORE . " FROM `{?_MYSQL_PREFIX?}_user_data`" . $whereStatement . " ORDER BY `%s` ASC",
+               getRequestParameter('sortby')
+       );
 
        // Prepare SQL and run it
-       $sql = "SELECT userid, gender, surname, family, email, REMOTE_ADDR, refid, status, emails_sent, mails_confirmed, emails_received".$MORE." FROM `{!_MYSQL_PREFIX!}_user_data`".$whereStatement." ORDER BY ".REQUEST_GET(('sortby'));
        $result_master = SQL_QUERY($sql, __FILE__, __LINE__);
 
        // Calculate page count (0.5 fixes a bug with page count)
-       if (getConfig('user_limit') == 0) {
+       if (getConfig('user_limit') == '0') {
                setConfigEntry('user_limit', 100);
-               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('EXTENSION_WARNING_USER_LIMIT'));
+               loadTemplate('admin_settings_saved', false, '{--EXTENSION_WARNING_USER_LIMIT--}');
        } // END - if
 
        // Activate the extension please!
-       $PAGES = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5);
+       $numPages = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5);
 
-       if (!REQUEST_ISSET_GET(('page')))   REQUEST_SET_GET('page'  , "1");
-       if (!REQUEST_ISSET_GET(('offset'))) REQUEST_SET_GET('offset', getConfig('user_limit'));
+       if (!isGetRequestParameterSet('page'))   setGetRequestParameter('page'  , 1);
+       if (!isGetRequestParameterSet('offset')) setGetRequestParameter('offset', getConfig('user_limit'));
 
        // Add limitation to SQL string and run him again
-       $sql .= " LIMIT ".(REQUEST_GET('offset') * REQUEST_GET('page') - REQUEST_GET('offset')).", ".REQUEST_GET('offset');
+       $sql .= ' LIMIT ' . (getRequestParameter('offset') * getRequestParameter('page') - getRequestParameter('offset')) . ', ' . getRequestParameter('offset');
        $result = SQL_QUERY($sql, __FILE__, __LINE__);
 
-       $result_user = SQL_QUERY("SELECT emails_sent FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `status`='CONFIRMED'", __FILE__, __LINE__);
-       $user_count = SQL_NUMROWS($result_user);
-       SQL_FREERESULT($result_user);
-
+       // Are there some entries?
        if (SQL_NUMROWS($result_master) > 0) {
-               // Free memory
-               SQL_FREERESULT($result_master);
-
                // We have some (new?) registrations!
-               define('__COLSPAN1'  , $colspan);
-               define('__COLSPAN2'  , ($colspan + 2));
-               define('__USER_CNT'  , $user_count);
+               $templateContent['colspan2']   = ($colspan + 2);
+               $templateContent['user_count'] = getTotalConfirmedUser();
 
                // Sorting links
-               define('__ALPHA_SORT', alpha(REQUEST_GET('sortby'), $colspan, true));
-               define('__SORT_LINKS', SortLinks(REQUEST_GET('letter'), REQUEST_GET('sortby'), $colspan, true));
+               $templateContent['alpha_sort'] = alpha(getRequestParameter('sortby'), ($colspan + 1), true);
+               $templateContent['sort_links'] = addSortLinks(getRequestParameter('letter'), getRequestParameter('sortby'), ($colspan + 1), true);
+               $templateContent['page_nav']   = '';
 
-               if ($PAGES > 1) {
-                       define('__PAGE_NAV', ADD_PAGENAV($PAGES, getConfig('user_limit'), true, $colspan, true));
-               } else {
-                       // No page navigation is required
-                       define('__PAGE_NAV', "");
-               }
+               if ($numPages > 1) {
+                       $templateContent['page_nav'] = addPageNavigation($numPages, getConfig('user_limit'), true, $colspan, true);
+               } // END - if
 
                // Column with nickname when nickname extension is present
-               // @TODO Rewrite this into a  filter
-               if (EXT_IS_ACTIVE("nickname")) {
+               // @TODO Rewrite this into a filter
+               $templateContent['nickname_th'] = '';
+               if (isExtensionActive('nickname')) {
                        // Nickname extension found
-                       define('__NICKNAME_TH', "  <td class=\"admin_title bottom2\" align=\"center\">{--NICKNAME--}</td>");
-               } else {
-                       // Not found
-                       define('__NICKNAME_TH', "");
-               }
+                       $templateContent['nickname_th'] = '<td class="header_column bottom" align="center">{--NICKNAME--}</td>';
+               } // END - if
 
                // Load all users
-               $OUT = ""; $SW = 2;
+               $OUT = ''; $SW = 2;
                while ($content = SQL_FETCHARRAY($result)) {
-                       // Set refid link
-                       if ($content['refid'] > 0) $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']);
+                       // Merge more data in
+                       $content = merge_array($content, $templateContent);
 
                        // Get number of unconfirmed mails
-                       $LINKS = GET_TOTAL_DATA($content['userid'], "user_links", "id", "userid", true);
-                       if ($LINKS > 0) $LINKS = $BASE."&amp;what=list_links&amp;uid=".$content['userid']."\">".TRANSLATE_COMMA($LINKS)."</a>]";
+                       $content['links'] = countSumTotalData($content['userid'], 'user_links', 'id', 'userid', true);
+                       if ($content['links'] > 0) $content['links'] = $base . '&amp;what=list_links&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['links']) . '</a>]';
 
                        // Set link to sent mails if present
-                       if ($content['emails_sent'] > 0) $content['emails_sent'] = $BASE."&amp;what=email_details&amp;uid=".$content['userid']."\">".TRANSLATE_COMMA($content['emails_sent'])."</a>]";
+                       if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&amp;what=email_details&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['emails_sent']) . '</a>]';
 
                        // Add nickname
-                       if (empty($content['nickname']) || $content['nickname'] == $content['userid']) $content['nickname'] = "---";
+                       if ((empty($content['nickname'])) || ($content['nickname'] == $content['userid'])) $content['nickname'] = '---';
 
                        // Calculate total points
-                       $pointsTotal = GET_TOTAL_DATA($content['userid'], "user_points", "points")  - GET_TOTAL_DATA($content['userid'], "user_data", "used_points");
+                       $content['points'] = countSumTotalData($content['userid'], 'user_points', 'points')  - countSumTotalData($content['userid'], 'user_data', 'used_points');
 
                        // Clickrate
-                       $clickRate = 0;
+                       $content['rate'] = '0';
                        if ($content['emails_received'] > 0) {
-                               $clickRate = $content['mails_confirmed'] / $content['emails_received'] * 100;
+                               $content['rate'] = $content['mails_confirmed'] / $content['emails_received'] * 100;
                        } // END - if
 
                        // Transfer data to array
-                       $content['sw']     = $SW;
-                       $content['uid']    = ADMIN_USER_PROFILE_LINK($content['userid']);
-                       $content['gender'] = TRANSLATE_GENDER($content['gender']);
-                       $content['email']  = "[<a href=\"".CREATE_EMAIL_LINK($content['email'], "user_data")."\">".$content['email']."</a>]";
-                       $content['addr']   = $content['REMOTE_ADDR'];
-                       $content['links']  = $LINKS;
-                       $content['alinks'] = MEMBER_ACTION_LINKS($content['userid'], $content['status']);
-                       $content['points'] = TRANSLATE_COMMA($pointsTotal);
-                       $content['rate']   = TRANSLATE_COMMA($clickRate);
-                       $content['locked'] = TRANSLATE_COMMA(GET_TOTAL_DATA($content['userid'], "user_points", "locked_points"));
-                       $content['lock_timestamp'] = MAKE_DATETIME($content['lock_timestamp'], "2");
-                       $content['status'] = TRANSLATE_STATUS($content['status']);
+                       $content['sw']             = $SW;
+                       $content['email']          = '[<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['email'] . '</a>]';
+                       $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], 2);
+                       $content['refs']           = countSumTotalData($content['userid'], 'user_refs', 'id', 'userid', true);
+                       $content['locked']         = countSumTotalData($content['userid'], 'user_points', 'locked_points');
+
+                       // If we have at least one referal, make it clickable to referal list
+                       if ($content['refs'] > 0) $content['refs'] = $base . '&amp;what=list_refs&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['refs']) . '</a>]';
 
                        // Is the lock reason not set?
-                       if (!isset($content['lock_reason'])) $content['lock_reason'] = "---";
+                       if (!isset($content['lock_reason'])) $content['lock_reason'] = '---';
 
-                       // Is the extension "country" installed?
+                       // Is the extension 'country' installed?
                        // @TODO Rewrite this into a filter
-                       if (EXT_IS_ACTIVE("country")) {
+                       if (isExtensionActive('country')) {
                                // Then overwrite country information
-                               $content['country'] = COUNTRY_GENERATE_INFO($content['country_code']);
-                       } elseif ($content['country'] == "") {
-                               // Zero ID???
-                               $content['country'] = "???";
+                               $content['country'] = generateCountryInfo($content['country_code']);
+                       } elseif ($content['country'] == '') {
+                               // Zero id???
+                               $content['country'] = '???';
                        }
 
                        // Load row template and switch colors
-                       $OUT .= LOAD_TEMPLATE("admin_list_user_row", true, $content);
+                       $OUT .= loadTemplate('admin_list_user_row', true, $content);
                        $SW = 3 - $SW;
                } // END - while
 
                // Free memory
                SQL_FREERESULT($result);
 
-               define('__USER_ROWS', $OUT);
-
-               // Load main template
-               LOAD_TEMPLATE("admin_list_user");
-
                // Free some memory
                SQL_FREERESULT($result_master);
+
+               // Remember all rows
+               $content['rows'] = $OUT;
+
+               // Init title with "all accounts"
+               $content['title'] = getMessage('ADMIN_ALL_ACCOUNTS');
+               if (isGetRequestParameterSet(('status'))) {
+                       // Set title according to the 'status'
+                       $content['title'] = getMessage(sprintf("ADMIN_LIST_STATUS_%s_ACCOUNTS", strtoupper(getRequestParameter(('status')))));
+               } elseif (isGetRequestParameterSet('mode')) {
+                       // Set title according to the "mode"
+                       $content['title'] = getMessage(sprintf("ADMIN_LIST_MODE_%s_ACCOUNTS", strtoupper(getRequestParameter('mode'))));
+               }
+
+               // Merge more data again
+               $content = merge_array($content, $templateContent);
+
+               // Load main template
+               loadTemplate('admin_list_user', false, $content);
        } else {
                // No one as registered so far! :-(
-               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_NO_NONE_REGISTERED'));
+               loadTemplate('admin_settings_saved', false, '{--ADMIN_NO_NONE_REGISTERED--}');
        }
+
+       // Free memory
+       SQL_FREERESULT($result_master);
 }
 
-//
+// [EOF]
 ?>