MediaWiki master
IContentHandlerFactory.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Content;
4
6
8
17 public function getContentHandler( string $modelID ): ContentHandler;
18
26 public function getContentModels(): array;
27
33 public function getAllContentFormats(): array;
34
42 public function isDefinedModel( string $modelID ): bool;
43}
Exception thrown when an unregistered content model is requested.
A content handler knows how do deal with a specific type of content on a wiki page.
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.