MediaWiki  1.23.8
SpecialBlankpage.php
Go to the documentation of this file.
1 <?php
31  public function __construct() {
32  parent::__construct( 'Blankpage' );
33  }
34 
35  public function execute( $par ) {
36  $this->setHeaders();
37  $this->getOutput()->addWikiMsg( 'intentionallyblankpage' );
38  }
39 }
SpecialBlankpage
Special page designed for basic benchmarking of MediaWiki since it doesn't really do much.
Definition: SpecialBlankpage.php:30
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:535
UnlistedSpecialPage
Shortcut to construct a special page which is unlisted by default.
Definition: UnlistedSpecialPage.php:29
SpecialBlankpage\__construct
__construct()
Definition: SpecialBlankpage.php:31
SpecialBlankpage\execute
execute( $par)
Default execute method Checks user permissions, calls the function given in mFunction.
Definition: SpecialBlankpage.php:35
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:352