MediaWiki REL1_33
SlotRoleHandler.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Revision;
24
26
35
39 private $role;
40
45 private $layout = [
46 'display' => 'section', // use 'none' to suppress
47 'region' => 'center',
48 'placement' => 'append'
49 ];
50
55
64 public function __construct( $role, $contentModel, $layout = [] ) {
65 $this->role = $role;
66 $this->contentModel = $contentModel;
67 $this->layout = array_merge( $this->layout, $layout );
68 }
69
73 public function getRole() {
74 return $this->role;
75 }
76
97 public function getOutputLayoutHints() {
98 return $this->layout;
99 }
100
106 public function getNameMessageKey() {
107 return 'slot-name-' . $this->role;
108 }
109
121 public function getDefaultModel( LinkTarget $page ) {
122 return $this->contentModel;
123 }
124
140 public function isAllowedModel( $model, LinkTarget $page ) {
141 return ( $model === $this->contentModel );
142 }
143
155 public function supportsArticleCount() {
156 return false;
157 }
158
159}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
SlotRoleHandler instances are used to declare the existence and behavior of slot roles.
getOutputLayoutHints()
Layout hints for use while laying out the combined output of all slots, typically by RevisionRenderer...
getNameMessageKey()
The message key for the translation of the slot name.
getDefaultModel(LinkTarget $page)
Determines the content model to use per default for this slot on the given page.
__construct( $role, $contentModel, $layout=[])
supportsArticleCount()
Whether this slot should be considered when determining whether a page should be counted as an "artic...
isAllowedModel( $model, LinkTarget $page)
Determines whether the given model can be used on this slot on the given page.
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database layout
Definition database.txt:8
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:37
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))