MediaWiki
master
IContentHandlerFactory.php
Go to the documentation of this file.
1
<?php
2
3
namespace
MediaWiki\Content
;
4
5
use
MWUnknownContentModelException
;
6
7
interface
IContentHandlerFactory
{
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
}
MWUnknownContentModelException
Exception thrown when an unregistered content model is requested.
Definition
MWUnknownContentModelException.php:11
MediaWiki\Content\ContentHandler
A content handler knows how do deal with a specific type of content on a wiki page.
Definition
ContentHandler.php:95
MediaWiki\Content\IContentHandlerFactory
Definition
IContentHandlerFactory.php:7
MediaWiki\Content\IContentHandlerFactory\isDefinedModel
isDefinedModel(string $modelID)
Returns true if $modelID is a defined content model for which getContentHandler() can be expected to ...
MediaWiki\Content\IContentHandlerFactory\getContentHandler
getContentHandler(string $modelID)
Returns a ContentHandler instance for the given $modelID.
MediaWiki\Content\IContentHandlerFactory\getContentModels
getContentModels()
Returns a list of defined content models.
MediaWiki\Content\IContentHandlerFactory\getAllContentFormats
getAllContentFormats()
Returns a list of all serialization formats supported for any of the defined content models.
MediaWiki\Content
Definition
AbstractContent.php:29
includes
content
IContentHandlerFactory.php
Generated on Sat Oct 5 2024 01:23:28 for MediaWiki by
1.10.0