MediaWiki master
IContentHandlerFactory.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Content;
4
7
9
18 public function getContentHandler( string $modelID ): ContentHandler;
19
27 public function getContentModels(): array;
28
34 public function getAllContentFormats(): array;
35
43 public function isDefinedModel( string $modelID ): bool;
44}
A content handler knows how do deal with a specific type of content on a wiki page.
Exception thrown when an unregistered content model is requested.
isDefinedModel(string $modelID)
Returns true if $modelID is a defined content model for which getContentHandler() can be expected to ...
getContentHandler(string $modelID)
Returns a ContentHandler instance for the given $modelID.
getContentModels()
Returns a list of defined content models.
getAllContentFormats()
Returns a list of all serialization formats supported for any of the defined content models.