MediaWiki REL1_33
MainSlotRoleHandler.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Revision;
24
29
42
48
54 parent::__construct( 'main', CONTENT_MODEL_WIKITEXT );
55 $this->namespaceContentModels = $namespaceContentModels;
56 }
57
58 public function supportsArticleCount() {
59 return true;
60 }
61
68 public function isAllowedModel( $model, LinkTarget $page ) {
69 $title = Title::newFromLinkTarget( $page );
70 $handler = ContentHandler::getForModelID( $model );
71 return $handler->canBeUsedOn( $title );
72 }
73
79 public function getDefaultModel( LinkTarget $page ) {
80 // NOTE: this method must not rely on $title->getContentModel() directly or indirectly,
81 // because it is used to initialize the mContentModel member.
82
83 $ext = '';
84 $ns = $page->getNamespace();
85 $model = $this->namespaceContentModels[$ns] ?? null;
86
87 // Hook can determine default model
88 $title = Title::newFromLinkTarget( $page );
89 if ( !Hooks::run( 'ContentHandlerDefaultModelFor', [ $title, &$model ] ) && !is_null( $model ) ) {
90 return $model;
91 }
92
93 // Could this page contain code based on the title?
94 $isCodePage = $ns === NS_MEDIAWIKI && preg_match( '!\.(css|js|json)$!u', $title->getText(), $m );
95 if ( $isCodePage ) {
96 $ext = $m[1];
97 }
98
99 // Is this a user subpage containing code?
100 $isCodeSubpage = $ns === NS_USER
101 && !$isCodePage
102 && preg_match( "/\\/.*\\.(js|css|json)$/", $title->getText(), $m );
103
104 if ( $isCodeSubpage ) {
105 $ext = $m[1];
106 }
107
108 // Is this wikitext, according to $wgNamespaceContentModels or the DefaultModelFor hook?
109 $isWikitext = is_null( $model ) || $model == CONTENT_MODEL_WIKITEXT;
110 $isWikitext = $isWikitext && !$isCodePage && !$isCodeSubpage;
111
112 if ( !$isWikitext ) {
113 switch ( $ext ) {
114 case 'js':
116 case 'css':
117 return CONTENT_MODEL_CSS;
118 case 'json':
119 return CONTENT_MODEL_JSON;
120 default:
121 return $model ?? CONTENT_MODEL_TEXT;
122 }
123 }
124
125 // We established that it must be wikitext
126
128 }
129
130}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
A content handler knows how do deal with a specific type of content on a wiki page.
Hooks class.
Definition Hooks.php:34
A SlotRoleHandler for the main slot.
string[] $namespaceContentModels
A mapping of namespaces to content models.
supportsArticleCount()
Whether this slot should be considered when determining whether a page should be counted as an "artic...
__construct(array $namespaceContentModels)
SlotRoleHandler instances are used to declare the existence and behavior of slot roles.
Represents a title within MediaWiki.
Definition Title.php:40
const NS_USER
Definition Defines.php:75
const CONTENT_MODEL_CSS
Definition Defines.php:246
const NS_MEDIAWIKI
Definition Defines.php:81
const CONTENT_MODEL_WIKITEXT
Definition Defines.php:244
const CONTENT_MODEL_JSON
Definition Defines.php:248
const CONTENT_MODEL_TEXT
Definition Defines.php:247
const CONTENT_MODEL_JAVASCRIPT
Definition Defines.php:245
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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 modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition hooks.txt:894
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:955
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
getNamespace()
Get the namespace index.
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))
if(!is_readable( $file)) $ext
Definition router.php:48