MediaWiki  1.28.1
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 }
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
Definition: User.php:525
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:802
getContext()
Gets the context this SpecialPage is executed in.
including($x=null)
Whether the special page is being evaluated via transclusion.
getOutput()
Get the OutputPage being used for this instance.
prefixSearchSubpages($search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
outputHeader($summaryMessageKey= '')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Shortcut to construct an includable special page.
static search($audience, $search, $limit, $offset=0)
Do a prefix search of user names and return a list of matching user names.
getSkin()
Shortcut to get the skin being used for this instance.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes! ...
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 local account $user
Definition: hooks.txt:242
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:35
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1046
getRequest()
Get the WebRequest being used for this instance.