MediaWiki  1.34.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 }
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
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
Revision\SlotRoleHandler\$role
string $role
Definition: SlotRoleHandler.php:39
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