MediaWiki
1.28.0
|
Public Member Functions | |
__construct ($dataModel) | |
makeEmptyContent () | |
Creates an empty Content object of the type supported by this ContentHandler. More... | |
serializeContent (Content $content, $format=null) | |
unserializeContent ($blob, $format=null) | |
Public Member Functions inherited from ContentHandler | |
__construct ($modelId, $formats) | |
Constructor, initializing the ContentHandler instance with its model ID and a list of supported formats. More... | |
canBeUsedOn (Title $title) | |
Determines whether the content type handled by this ContentHandler can be used on the given page. More... | |
createDifferenceEngine (IContextSource $context, $old=0, $new=0, $rcid=0, $refreshCache=false, $unhide=false) | |
Factory for creating an appropriate DifferenceEngine for this content model. More... | |
exportTransform ($blob, $format=null) | |
Applies transformations on export (returns the blob unchanged per default). More... | |
getActionOverrides () | |
Returns overrides for action handlers. More... | |
getAutoDeleteReason (Title $title, &$hasHistory) | |
Auto-generates a deletion reason. More... | |
getAutosummary (Content $oldContent=null, Content $newContent=null, $flags) | |
Return an applicable auto-summary if one exists for the given edit. More... | |
getDataForSearchIndex (WikiPage $page, ParserOutput $output, SearchEngine $engine) | |
Return fields to be indexed by search engine as representation of this document. More... | |
getDefaultFormat () | |
The format used for serialization/deserialization by default by this ContentHandler. More... | |
getFieldsForSearchIndex (SearchEngine $engine) | |
Get fields definition for search index. More... | |
getModelID () | |
Returns the model id that identifies the content model this ContentHandler can handle. More... | |
getPageLanguage (Title $title, Content $content=null) | |
Get the language in which the content of the given page is written. More... | |
getPageViewLanguage (Title $title, Content $content=null) | |
Get the language in which the content of this page is written when viewed by user. More... | |
getParserOutputForIndexing (WikiPage $page, ParserCache $cache=null) | |
Produce page output suitable for indexing. More... | |
getSupportedFormats () | |
Returns a list of serialization formats supported by the serializeContent() and unserializeContent() methods of this ContentHandler. More... | |
getUndoContent (Revision $current, Revision $undo, Revision $undoafter) | |
Get the Content object that needs to be saved in order to undo all revisions between $undo and $undoafter. More... | |
importTransform ($blob, $format=null) | |
Apply import transformation (per default, returns $blob unchanged). More... | |
isParserCacheSupported () | |
Returns true for content models that support caching using the ParserCache mechanism. More... | |
isSupportedFormat ($format) | |
Returns true if $format is a serialization format supported by this ContentHandler, and false otherwise. More... | |
makeEmptyContent () | |
Creates an empty Content object of the type supported by this ContentHandler. More... | |
makeParserOptions ($context) | |
Get parser options suitable for rendering and caching the article. More... | |
makeRedirectContent (Title $destination, $text= '') | |
Creates a new Content object that acts as a redirect to the given page, or null if redirects are not supported by this content model. More... | |
merge3 (Content $oldContent, Content $myContent, Content $yourContent) | |
Attempts to merge differences between three versions. More... | |
serializeContent (Content $content, $format=null) | |
Serializes a Content object of the type supported by this ContentHandler. More... | |
supportsCategories () | |
Returns true if this content model supports categories. More... | |
supportsDirectApiEditing () | |
Whether or not this content model supports direct editing via ApiEditPage. More... | |
supportsDirectEditing () | |
Return true if this content model supports direct editing, such as via EditPage. More... | |
supportsRedirects () | |
Returns true if this content model supports redirects. More... | |
supportsSections () | |
Returns true if this content model supports sections. More... | |
unserializeContent ($blob, $format=null) | |
Unserializes a Content object of the type supported by this ContentHandler. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from ContentHandler | |
static | getAllContentFormats () |
static | getContentModels () |
static | getContentText (Content $content=null) |
Convenience function for getting flat text from a Content object. More... | |
static | getDefaultModelFor (Title $title) |
Returns the name of the default content model to be used for the page with the given title. More... | |
static | getForContent (Content $content) |
Returns the appropriate ContentHandler singleton for the given Content object. More... | |
static | getForModelID ($modelId) |
Returns the ContentHandler singleton for the given model ID. More... | |
static | getForTitle (Title $title) |
Returns the appropriate ContentHandler singleton for the given title. More... | |
static | getLocalizedName ($name, Language $lang=null) |
Returns the localized name for a given content model. More... | |
static | makeContent ($text, Title $title=null, $modelId=null, $format=null) |
Convenience function for creating a Content object from a given textual representation. More... | |
static | runLegacyHooks ($event, $args=[], $deprecatedVersion=null) |
Call a legacy hook that uses text instead of Content objects. More... | |
Protected Member Functions inherited from ContentHandler | |
addSearchField (&$fields, SearchEngine $engine, $name, $type) | |
Add new field definition to array. More... | |
checkFormat ($format) | |
Convenient for checking whether a format provided as a parameter is actually supported. More... | |
checkModelID ($model_id) | |
getDiffEngineClass () | |
Returns the name of the diff engine to use. More... | |
Protected Attributes inherited from ContentHandler | |
string | $mModelID |
string[] | $mSupportedFormats |
Static Protected Attributes inherited from ContentHandler | |
static array | $handlers |
A Cache of ContentHandler instances by model id. More... | |
Definition at line 3 of file DummyContentHandlerForTesting.php.
DummyContentHandlerForTesting::__construct | ( | $dataModel | ) |
Definition at line 5 of file DummyContentHandlerForTesting.php.
DummyContentHandlerForTesting::makeEmptyContent | ( | ) |
Creates an empty Content object of the type supported by this ContentHandler.
Definition at line 39 of file DummyContentHandlerForTesting.php.
DummyContentHandlerForTesting::serializeContent | ( | Content | $content, |
$format = null |
|||
) |
Content | $content | |
string | $format |
Definition at line 17 of file DummyContentHandlerForTesting.php.
References Content\serialize().
DummyContentHandlerForTesting::unserializeContent | ( | $blob, | |
$format = null |
|||
) |
string | $blob | |
string | $format | Unused. |
Definition at line 29 of file DummyContentHandlerForTesting.php.
References $blob, and unserialize().