MediaWiki  1.27.2
SkinTemplateTest.php
Go to the documentation of this file.
1 <?php
2 
15  public function testMakeListItem( $expected, $key, $item, $options, $message ) {
16  $template = $this->getMockForAbstractClass( 'BaseTemplate' );
17 
18  $this->assertEquals(
19  $expected,
20  $template->makeListItem( $key, $item, $options ),
21  $message
22  );
23  }
24 
25  public function makeListItemProvider() {
26  return [
27  [
28  '<li class="class" title="itemtitle"><a href="url" title="title">text</a></li>',
29  '',
30  [
31  'class' => 'class',
32  'itemtitle' => 'itemtitle',
33  'href' => 'url',
34  'title' => 'title',
35  'text' => 'text'
36  ],
37  [],
38  'Test makteListItem with normal values'
39  ]
40  ];
41  }
42 }
magic word the default is to use $key to get the and $key value or $key value text $key value html to format the value $key
Definition: hooks.txt:2321
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 $template
Definition: hooks.txt:762
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:1004
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
testMakeListItem($expected, $key, $item, $options, $message)
makeListItemProvider
SkinTemplate.