MediaWiki  1.33.0
SlotRoleHandler.php
Go to the documentation of this file.
1 <?php
23 namespace 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 
54  private $contentModel;
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 }
layout
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database layout
Definition: database.txt:2
Revision\SlotRoleHandler\supportsArticleCount
supportsArticleCount()
Whether this slot should be considered when determining whether a page should be counted as an "artic...
Definition: SlotRoleHandler.php:155
Revision\SlotRoleHandler\$contentModel
string $contentModel
Definition: SlotRoleHandler.php:54
Revision\SlotRoleHandler
SlotRoleHandler instances are used to declare the existence and behavior of slot roles.
Definition: SlotRoleHandler.php:34
Revision\SlotRoleHandler\__construct
__construct( $role, $contentModel, $layout=[])
Definition: SlotRoleHandler.php:64
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
MediaWiki\Revision
Created by PhpStorm.
Definition: FallbackSlotRoleHandler.php:23
Revision\SlotRoleHandler\$layout
array $layout
Definition: SlotRoleHandler.php:45
Revision\SlotRoleHandler\getNameMessageKey
getNameMessageKey()
The message key for the translation of the slot name.
Definition: SlotRoleHandler.php:106
Revision\SlotRoleHandler\getRole
getRole()
Definition: SlotRoleHandler.php:73
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Revision\SlotRoleHandler\$role
string $role
Definition: SlotRoleHandler.php:39
array
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))
Revision\SlotRoleHandler\isAllowedModel
isAllowedModel( $model, LinkTarget $page)
Determines whether the given model can be used on this slot on the given page.
Definition: SlotRoleHandler.php:140
Revision\SlotRoleHandler\getOutputLayoutHints
getOutputLayoutHints()
Layout hints for use while laying out the combined output of all slots, typically by RevisionRenderer...
Definition: SlotRoleHandler.php:97
Revision\SlotRoleHandler\getDefaultModel
getDefaultModel(LinkTarget $page)
Determines the content model to use per default for this slot on the given page.
Definition: SlotRoleHandler.php:121
MediaWiki\Linker\LinkTarget
Definition: LinkTarget.php:26