MediaWiki  1.33.0
SkinApiTemplate.php
Go to the documentation of this file.
1 <?php
32 
33  public function execute() {
34  $this->html( 'headelement' ) ?>
35 
36  <div class="mw-body" role="main">
37  <h1 class="firstHeading"><?php $this->html( 'title' ) ?></h1>
38  <div class="mw-body-content">
39  <?php $this->html( 'bodytext' ) ?>
40  </div>
41  </div>
42 
43  <?php $this->printTrail() ?>
44  </body></html>
45 <?php
46  }
47 
48  // Skip work and hooks for stuff we don't use
49 
50  function getToolbox() {
51  return [];
52  }
53 
54  function getPersonalTools() {
55  return [];
56  }
57 
58  function getSidebar( $options = [] ) {
59  return [];
60  }
61 }
SkinApiTemplate\execute
execute()
Main function, used by classes that subclass QuickTemplate to show the actual HTML output.
Definition: SkinApiTemplate.php:33
SkinApiTemplate\getSidebar
getSidebar( $options=[])
Definition: SkinApiTemplate.php:58
SkinApiTemplate\getPersonalTools
getPersonalTools()
Create an array of personal tools items from the data in the quicktemplate stored by SkinTemplate.
Definition: SkinApiTemplate.php:54
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
SkinApiTemplate
BaseTemplate class for the 'apioutput' skin.
Definition: SkinApiTemplate.php:31
SkinApiTemplate\getToolbox
getToolbox()
Create an array of common toolbox items from the data in the quicktemplate stored by SkinTemplate.
Definition: SkinApiTemplate.php:50
BaseTemplate\printTrail
printTrail()
Output getTrail.
Definition: BaseTemplate.php:750
div
div
Definition: parserTests.txt:6850
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:1985
QuickTemplate\html
html( $str)
Definition: QuickTemplate.php:116
BaseTemplate
New base template for a skin's template extended from QuickTemplate this class features helper method...
Definition: BaseTemplate.php:29