MediaWiki  1.27.2
SkinApi.php
Go to the documentation of this file.
1 <?php
33 class SkinApi extends SkinTemplate {
34  public $skinname = 'apioutput';
35  public $template = 'SkinApiTemplate';
36 
37  public function setupSkinUserCss( OutputPage $out ) {
38  parent::setupSkinUserCss( $out );
39  $out->addModuleStyles( 'mediawiki.skinning.interface' );
40  }
41 
42  // Skip work and hooks for stuff we don't use
43 
44  function buildSidebar() {
45  return [];
46  }
47 
48  function getNewtalks() {
49  return '';
50  }
51 
52  function getSiteNotice() {
53  return '';
54  }
55 
56  public function getLanguages() {
57  return [];
58  }
59 
60  protected function buildPersonalUrls() {
61  return [];
62  }
63 
64  protected function buildContentNavigationUrls() {
65  return [];
66  }
67 
68  protected function buildNavUrls() {
69  return [];
70  }
71 }
getNewtalks()
Definition: SkinApi.php:48
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:762
getSiteNotice()
Definition: SkinApi.php:52
SkinTemplate class for API output.
Definition: SkinApi.php:33
buildNavUrls()
Definition: SkinApi.php:68
buildPersonalUrls()
Definition: SkinApi.php:60
$skinname
Definition: SkinApi.php:34
buildContentNavigationUrls()
Definition: SkinApi.php:64
getLanguages()
Definition: SkinApi.php:56
Base class for template-based skins.
This class should be covered by a general architecture document which does not exist as of January 20...
Definition: OutputPage.php:42
setupSkinUserCss(OutputPage $out)
Definition: SkinApi.php:37
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
addModuleStyles($modules)
Add only CSS of one or more modules recognized by ResourceLoader.
Definition: OutputPage.php:618
$template
Definition: SkinApi.php:35
buildSidebar()
Definition: SkinApi.php:44