0) $content['links'] = $base . '&what=list_links&userid=' . $userid . '%}">' . $content['links'] . ']'; if ($content['refid'] > 0) $content['refid'] = $base . '&what=list_user&userid=' . $content['refid'] . '%}">'.$content['refid'] . ']'; if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $userid . '%}">' . $content['refs'] . ']'; if ($content['cats'] > 0) $content['cats'] = $base . '&what=list_cats&userid=' . $userid . '%}">' . $content['cats'] . ']'; // Fix empty module if (empty($content['last_module'])) $content['last_module'] = '---'; // Calculate timestamp for birthday $stamp = mktime(0, 0, 0, $content['birth_month'], $content['birth_day'], $content['birth_year']); // Is this above zero? if ($stamp > 0) { // Then use it $content['birthday'] = generateDateTime($stamp, 3); } else { // Zero or below so set zero! $content['birthday'] = generateDateTime(0, 3); } // Prepare data for template $content['admin_links'] = generateMemberAdminActionLinks($userid, $content['status']); $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 . '&what=email_details&userid=' . $userid . '%}">' . translateComma($content['emails_sent']) . ']'; $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'] = translateComma(countSumTotalData($userid, 'user_points', 'points')); $content['locked'] = translateComma(countSumTotalData($userid, 'user_points', 'locked_points')); $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], 2); // Is the lock reason not set? if (!isset($content['lock_reason'])) $content['lock_reason'] = '---'; // Nickname inclusion? // @TODO Rewrite these to filters if (isExtensionActive('nickname')) { // Nickname not set or invalid? Then if ((empty($content['nickname'])) || ($content['nickname'] == $userid)) $content['nickname'] = '---'; } else { // Extension not found $content['nickname'] = getMessage('EXT_NICKNAME_404'); } // Is the user extension newer? if (isExtensionInstalledAndNewer('user', '0.3.4')) { // Then "translate" the number $content['rand_confirmed'] = translateComma($content['rand_confirmed']); } // END - if // Clickrate $content['click_rate'] = '0'; if ($content['emails_received'] > 0) { $content['click_rate'] = translateComma($content['mails_confirmed'] / $content['emails_received'] * 100); } // END - if // Is the extension 'country' installed? if (isExtensionActive('country')) { // Then overwrite country information $content['country'] = generateCountryInfo($content['country_code']); } elseif ($content['country'] == '0') { // Zero id??? $content['country'] = '???'; } // Add userid $content['userid'] = $userid; // Load user-details template loadTemplate('admin_user_details', false, $content); } else { // Account does not exist! loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_MEMBER_404', $userid)); } // Free the result SQL_FREERESULT($result_user); } else { $whereStatement = ''; if ((getRequestParameter('letter') != getMessage('_ALL2')) && (getRequestParameter('letter') != getMessage('_OTHERS')) && (isGetRequestParameterSet('letter'))) { // List only persons w $whereStatement = " WHERE `family` LIKE '".getRequestParameter('letter') . "%'"; } // END - if // Parse the status or mode parameter if (isGetRequestParameterSet(('status'))) { // Is a WHERE statement already there? if (!empty($whereStatement)) { // Then append the status column $whereStatement .= sprintf(" AND `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status'))))); } else { // Start a new one $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status'))))); } } elseif (isGetRequestParameterSet('mode')) { // Choose what we need to list switch (getRequestParameter('mode')) { case 'norefs': // Users w/o refs if (!empty($whereStatement)) { // Add AND statement $whereStatement .= " AND `refid`=0"; } else { // Add WHERE statement $whereStatement = " WHERE `refid`=0"; } break; default: // Invalid list mode logDebugMessage(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", getRequestParameter('mode'))); break; } // 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 $result_master = SQL_QUERY($sql, __FILE__, __LINE__); // Calculate page count (0.5 fixes a bug with page count) if (getConfig('user_limit') == '0') { setConfigEntry('user_limit', 100); loadTemplate('admin_settings_saved', false, getMessage('EXTENSION_WARNING_USER_LIMIT')); } // END - if // Activate the extension please! $PAGES = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5); 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 ".(getRequestParameter('offset') * getRequestParameter('page') - getRequestParameter('offset')).", ".getRequestParameter('offset'); $result = SQL_QUERY($sql, __FILE__, __LINE__); // Count all confirmed users $user_count = countSumTotalData('CONFIRMED','user_data','userid','status',true); // Are there some entries? if (SQL_NUMROWS($result_master) > 0) { // We have some (new?) registrations! define('__COLSPAN2' , ($colspan + 2)); define('__USER_CNT' , $user_count); // Sorting links define('__ALPHA_SORT', alpha(getRequestParameter('sortby'), $colspan, true)); define('__SORT_LINKS', addSortLinks(getRequestParameter('letter'), getRequestParameter('sortby'), $colspan, true)); if ($PAGES > 1) { define('__PAGE_NAV', addPageNavigation($PAGES, getConfig('user_limit'), true, $colspan, true)); } else { // No page navigation is required define('__PAGE_NAV', ''); } // Column with nickname when nickname extension is present // @TODO Rewrite this into a filter if (isExtensionActive('nickname')) { // Nickname extension found define('__NICKNAME_TH', " {--NICKNAME--}"); } else { // Not found define('__NICKNAME_TH', ''); } // Load all users $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Set refid link if ($content['refid'] > 0) $content['refid'] = generateUserProfileLink($content['refid']); // Get number of unconfirmed mails $content['links'] = countSumTotalData($content['userid'], 'user_links', 'id', 'userid', true); if ($content['links'] > 0) $content['links'] = $base . '&what=list_links&userid=' . $content['userid'] . '%}">' . translateComma($content['links']) . ']'; // Set link to sent mails if present if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&what=email_details&userid=' . $content['userid'] . '%}">' . translateComma($content['emails_sent']) . ']'; // Add nickname if ((empty($content['nickname'])) || ($content['nickname'] == $content['userid'])) $content['nickname'] = '---'; // Calculate total points $content['points'] = countSumTotalData($content['userid'], 'user_points', 'points') - countSumTotalData($content['userid'], 'user_data', 'used_points'); // Clickrate $content['rate'] = '0'; if ($content['emails_received'] > 0) { $content['rate'] = $content['mails_confirmed'] / $content['emails_received'] * 100; } // END - if // Transfer data to array $content['sw'] = $SW; $content['userid_link'] = generateUserProfileLink($content['userid']); $content['gender'] = translateGender($content['gender']); $content['email'] = '[' . $content['email'] . ']'; $content['alinks'] = generateMemberAdminActionLinks($content['userid'], $content['status']); $content['points'] = translateComma($content['points']); $content['rate'] = translateComma($content['rate']); $content['locked'] = translateComma(countSumTotalData($content['userid'], 'user_points', 'locked_points')); $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], 2); $content['status'] = translateUserStatus($content['status']); $content['refs'] = countSumTotalData($content['userid'], 'user_refs', 'id', 'userid', true); // If we have at least one referal, make it clickable to referal list if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $content['userid'] . '%}">' . $content['refs'] . ']'; // Is the lock reason not set? if (!isset($content['lock_reason'])) $content['lock_reason'] = '---'; // Is the extension 'country' installed? // @TODO Rewrite this into a filter if (isExtensionActive('country')) { // Then overwrite country information $content['country'] = generateCountryInfo($content['country_code']); } elseif ($content['country'] == '') { // Zero id??? $content['country'] = '???'; } // Load row template and switch colors $OUT .= loadTemplate('admin_list_user_row', true, $content); $SW = 3 - $SW; } // END - while // Free memory SQL_FREERESULT($result); // 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')))); } // Load main template loadTemplate('admin_list_user', false, $content); } else { // No one as registered so far! :-( loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NO_NONE_REGISTERED')); } // Free memory SQL_FREERESULT($result_master); } // [EOF] ?>