MediaWiki master
IContentHandlerFactory.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Content;
4
6
11
20 public function getContentHandler( string $modelID ): ContentHandler;
21
29 public function getContentModels(): array;
30
36 public function getAllContentFormats(): array;
37
45 public function isDefinedModel( string $modelID ): bool;
46}
Base class for content handling.
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.