Merge "registration: Don't let extensions load late"
[lhc/web/wiklou.git] / includes / specials / SpecialListusers.php
1 <?php
2 /**
3 * Implements Special:Listusers
4 *
5 * Copyright © 2004 Brion Vibber, lcrocker, Tim Starling,
6 * Domas Mituzas, Antoine Musso, Jens Frank, Zhengzhu,
7 * 2006 Rob Church <robchur@gmail.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 * @ingroup SpecialPage
26 */
27
28 /**
29 * @ingroup SpecialPage
30 */
31 class SpecialListUsers extends IncludableSpecialPage {
32 /**
33 * Constructor
34 */
35 public function __construct() {
36 parent::__construct( 'Listusers' );
37 }
38
39 /**
40 * Show the special page
41 *
42 * @param string $par (optional) A group to list users from
43 */
44 public function execute( $par ) {
45 $this->setHeaders();
46 $this->outputHeader();
47
48 $up = new UsersPager( $this->getContext(), $par, $this->including() );
49
50 # getBody() first to check, if empty
51 $usersbody = $up->getBody();
52
53 $s = '';
54 if ( !$this->including() ) {
55 $s = $up->getPageHeader();
56 }
57
58 if ( $usersbody ) {
59 $s .= $up->getNavigationBar();
60 $s .= Html::rawElement( 'ul', [], $usersbody );
61 $s .= $up->getNavigationBar();
62 } else {
63 $s .= $this->msg( 'listusers-noresult' )->parseAsBlock();
64 }
65
66 $this->getOutput()->addHTML( $s );
67 }
68
69 /**
70 * Return an array of subpages that this special page will accept.
71 *
72 * @return string[] subpages
73 */
74 public function getSubpagesForPrefixSearch() {
75 return User::getAllGroups();
76 }
77
78 protected function getGroupName() {
79 return 'users';
80 }
81 }
82
83 /**
84 * Redirect page: Special:ListAdmins --> Special:ListUsers/sysop.
85 *
86 * @ingroup SpecialPage
87 */
88 class SpecialListAdmins extends SpecialRedirectToSpecial {
89 function __construct() {
90 parent::__construct( 'Listadmins', 'Listusers', 'sysop' );
91 }
92 }
93
94 /**
95 * Redirect page: Special:ListBots --> Special:ListUsers/bot.
96 *
97 * @ingroup SpecialPage
98 */
99 class SpecialListBots extends SpecialRedirectToSpecial {
100 function __construct() {
101 parent::__construct( 'Listbots', 'Listusers', 'bot' );
102 }
103 }