MediaWiki  1.33.0
DisabledSpecialPage.php
Go to the documentation of this file.
1 <?php
36 
38  protected $errorMessage;
39 
46  public static function getCallback( $name, $errorMessage = null ) {
47  return function () use ( $name, $errorMessage ) {
49  };
50  }
51 
56  public function __construct( $name, $errorMessage = null ) {
57  parent::__construct( $name );
58  $this->errorMessage = $errorMessage ?: 'disabledspecialpage-disabled';
59  }
60 
61  public function execute( $subPage ) {
62  $this->setHeaders();
63  $this->outputHeader();
64 
65  $error = Html::rawElement( 'div', [
66  'class' => 'error',
67  ], $this->msg( $this->errorMessage )->parseAsBlock() );
68  $this->getOutput()->addHTML( $error );
69  }
70 
71 }
SpecialPage\msg
msg( $key)
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:796
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:725
DisabledSpecialPage\getCallback
static getCallback( $name, $errorMessage=null)
Create a callback suitable for use in $wgSpecialPages.
Definition: DisabledSpecialPage.php:46
UnlistedSpecialPage
Shortcut to construct a special page which is unlisted by default.
Definition: UnlistedSpecialPage.php:29
DisabledSpecialPage\execute
execute( $subPage)
Default execute method Checks user permissions.
Definition: DisabledSpecialPage.php:61
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:35
DisabledSpecialPage\__construct
__construct( $name, $errorMessage=null)
Definition: DisabledSpecialPage.php:56
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:531
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
DisabledSpecialPage\$errorMessage
Message $errorMessage
Definition: DisabledSpecialPage.php:38
DisabledSpecialPage
This class is a drop-in replacement for other special pages that need to be manually disabled.
Definition: DisabledSpecialPage.php:35
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:633