MediaWiki  REL1_31
SpecialListfiles.php
Go to the documentation of this file.
1 <?php
25  public function __construct() {
26  parent::__construct( 'Listfiles' );
27  }
28 
29  public function execute( $par ) {
30  $this->setHeaders();
31  $this->outputHeader();
32 
33  if ( $this->including() ) {
34  $userName = $par;
35  $search = '';
36  $showAll = false;
37  } else {
38  $userName = $this->getRequest()->getText( 'user', $par );
39  $search = $this->getRequest()->getText( 'ilsearch', '' );
40  $showAll = $this->getRequest()->getBool( 'ilshowall', false );
41  }
42 
43  $pager = new ImageListPager(
44  $this->getContext(),
45  $userName,
46  $search,
47  $this->including(),
48  $showAll
49  );
50 
51  $out = $this->getOutput();
52  if ( $this->including() ) {
53  $out->addParserOutputContent( $pager->getBodyOutput() );
54  } else {
55  $user = $pager->getRelevantUser();
56  $this->getSkin()->setRelevantUser( $user );
57  $pager->getForm();
58  $out->addParserOutputContent( $pager->getFullOutput() );
59  }
60  }
61 
70  public function prefixSearchSubpages( $search, $limit, $offset ) {
71  $user = User::newFromName( $search );
72  if ( !$user ) {
73  // No prefix suggestion for invalid user
74  return [];
75  }
76  // Autocomplete subpage as user list - public to allow caching
77  return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
78  }
79 
80  protected function getGroupName() {
81  return 'media';
82  }
83 }
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:247
SpecialListFiles\__construct
__construct()
Definition: SpecialListfiles.php:25
SpecialListFiles\execute
execute( $par)
Default execute method Checks user permissions.
Definition: SpecialListfiles.php:29
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:722
UserNamePrefixSearch\search
static search( $audience, $search, $limit, $offset=0)
Do a prefix search of user names and return a list of matching user names.
Definition: UserNamePrefixSearch.php:39
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:864
SpecialListFiles
Definition: SpecialListfiles.php:24
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:591
SpecialPage\getSkin
getSkin()
Shortcut to get the skin being used for this instance.
Definition: SpecialPage.php:742
IncludableSpecialPage
Shortcut to construct an includable special page.
Definition: IncludableSpecialPage.php:29
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:37
SpecialListFiles\prefixSearchSubpages
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
Definition: SpecialListfiles.php:70
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:527
SpecialPage\getContext
getContext()
Gets the context this SpecialPage is executed in.
Definition: SpecialPage.php:695
SpecialPage\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: SpecialPage.php:712
SpecialListFiles\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialListfiles.php:80
ImageListPager
Definition: ImageListPager.php:29
SpecialPage\outputHeader
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Definition: SpecialPage.php:629
SpecialPage\including
including( $x=null)
Whether the special page is being evaluated via transclusion.
Definition: SpecialPage.php:226