MediaWiki REL1_31
SpecialApiSandbox.php
Go to the documentation of this file.
1<?php
29 public function __construct() {
30 parent::__construct( 'ApiSandbox' );
31 }
32
33 public function execute( $par ) {
34 $this->setHeaders();
35 $out = $this->getOutput();
36 $this->addHelpLink( 'Help:ApiSandbox' );
37
38 if ( !$this->getConfig()->get( 'EnableAPI' ) ) {
39 $out->showErrorPage( 'error', 'apisandbox-api-disabled' );
40 }
41
42 $out->addJsConfigVars( 'apihighlimits', $this->getUser()->isAllowed( 'apihighlimits' ) );
43 $out->addModuleStyles( [
44 'mediawiki.special.apisandbox.styles',
45 ] );
46 $out->addModules( [
47 'mediawiki.special.apisandbox',
48 'mediawiki.apipretty',
49 ] );
50 $out->wrapWikiMsg(
51 "<div id='mw-apisandbox'><div class='mw-apisandbox-nojs error'>\n$1\n</div></div>",
52 'apisandbox-jsonly'
53 );
54 }
55
56 protected function getGroupName() {
57 return 'wiki';
58 }
59}
execute( $par)
Default execute method Checks user permissions.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Parent class for all special pages.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
getConfig()
Shortcut to get main config object.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
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