MediaWiki  1.28.1
SkinApiTemplate.php
Go to the documentation of this file.
1 <?php
34 
35  public function execute() {
36  $this->html( 'headelement' ) ?>
37 
38  <div class="mw-body" role="main">
39  <h1 class="firstHeading"><?php $this->html( 'title' ) ?></h1>
40  <div class="mw-body-content">
41  <?php $this->html( 'bodytext' ) ?>
42  </div>
43  </div>
44 
45  <?php $this->printTrail() ?>
46  </body></html>
47 <?php
48  }
49 
50  // Skip work and hooks for stuff we don't use
51 
52  function getToolbox() {
53  return [];
54  }
55 
56  function getPersonalTools() {
57  return [];
58  }
59 
60  function getSidebar( $options = [] ) {
61  return [];
62  }
63 }
getSidebar($options=[])
New base template for a skin's template extended from QuickTemplate this class features helper method...
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 $options
Definition: hooks.txt:1046
BaseTemplate class for the 'apioutput' skin.
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
printTrail()
Output the basic end-page trail including bottomscripts, reporttime, and debug stuff.