3 * Implements Special:Listfiles
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
24 class SpecialListFiles
extends IncludableSpecialPage
{
25 public function __construct() {
26 parent
::__construct( 'Listfiles' );
29 public function execute( $par ) {
31 $this->outputHeader();
33 if ( $this->including() ) {
38 $userName = $this->getRequest()->getText( 'user', $par );
39 $search = $this->getRequest()->getText( 'ilsearch', '' );
40 $showAll = $this->getRequest()->getBool( 'ilshowall', false );
43 $pager = new ImageListPager(
51 $out = $this->getOutput();
52 if ( $this->including() ) {
53 $out->addParserOutputContent( $pager->getBodyOutput() );
55 $user = $pager->getRelevantUser();
56 $this->getSkin()->setRelevantUser( $user );
58 $out->addParserOutputContent( $pager->getFullOutput() );
63 * Return an array of subpages beginning with $search that this special page will accept.
65 * @param string $search Prefix to search for
66 * @param int $limit Maximum number of results to return (usually 10)
67 * @param int $offset Number of results to skip (usually 0)
68 * @return string[] Matching subpages
70 public function prefixSearchSubpages( $search, $limit, $offset ) {
71 $user = User
::newFromName( $search );
73 // No prefix suggestion for invalid user
76 // Autocomplete subpage as user list - public to allow caching
77 return UserNamePrefixSearch
::search( 'public', $search, $limit, $offset );
80 protected function getGroupName() {