<?php /* Question2Answer (c) Gideon Greenspan http://www.question2answer.org/ File: qa-include/qa-page-users-blocked.php Version: See define()s at top of qa-include/qa-base.php Description: Controller for page showing users who have been blocked 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 the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. More about this license: http://www.question2answer.org/license.php */ if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser header('Location: ../'); exit; } require_once QA_INCLUDE_DIR.'qa-db-selects.php'; require_once QA_INCLUDE_DIR.'qa-app-users.php'; require_once QA_INCLUDE_DIR.'qa-app-format.php'; // Check we're not using single-sign on integration if (QA_FINAL_EXTERNAL_USERS) qa_fatal_error('User accounts are handled by external code'); // Get list of blocked users $users=qa_db_select_with_pending(qa_db_users_with_flag_selectspec(QA_USER_FLAGS_USER_BLOCKED)); // Check we have permission to view this page (moderator or above) if (qa_get_logged_in_level() < QA_USER_LEVEL_MODERATOR) { $qa_content=qa_content_prepare(); $qa_content['error']=qa_lang_html('users/no_permission'); return $qa_content; } // Get userids and handles of retrieved users $usershtml=qa_userids_handles_html($users); // Prepare content for theme $qa_content=qa_content_prepare(); $qa_content['title']=count($users) ? qa_lang_html('users/blocked_users') : qa_lang_html('users/no_blocked_users'); $qa_content['ranking']=array( 'items' => array(), 'rows' => ceil(count($users)/qa_opt('columns_users')), 'type' => 'users' ); foreach ($users as $user) { $qa_content['ranking']['items'][]=array( 'label' => $usershtml[$user['userid']], 'score' => qa_html(qa_user_level_string($user['level'])), 'raw' => $user, ); } $qa_content['navigation']['sub']=qa_users_sub_navigation(); return $qa_content; /* Omit PHP closing tag to help avoid accidental output */