MediaWiki
1.28.0
|
A content handler knows how do deal with a specific type of content on a wiki page. More...
Public Member Functions | |
__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... | |
Static Public Member Functions | |
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 | |
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 | |
string | $mModelID |
string[] | $mSupportedFormats |
Static Protected Attributes | |
static array | $handlers |
A Cache of ContentHandler instances by model id. More... | |
A content handler knows how do deal with a specific type of content on a wiki page.
Content is stored in the database in a serialized form (using a serialization format a.k.a. MIME type) and is unserialized into its native PHP representation (the content model), which is wrapped in an instance of the appropriate subclass of Content.
ContentHandler instances are stateless singletons that serve, among other things, as a factory for Content objects. Generally, there is one subclass of ContentHandler and one subclass of Content for every type of content model.
Some content types have a flat model, that is, their native representation is the same as their serialized form. Examples would be JavaScript and CSS code. As of now, this also applies to wikitext (MediaWiki's default content type), but wikitext content may be represented by a DOM or AST structure in the future.
Definition at line 84 of file ContentHandler.php.
ContentHandler::__construct | ( | $modelId, | |
$formats | |||
) |
Constructor, initializing the ContentHandler instance with its model ID and a list of supported formats.
Values for the parameters are typically provided as literals by subclass's constructors.
string | $modelId | (use CONTENT_MODEL_XXX constants). |
string[] | $formats List for supported serialization formats (typically as MIME types) |
Definition at line 444 of file ContentHandler.php.
|
protected |
Add new field definition to array.
SearchIndexField[] | $fields | |
SearchEngine | $engine | |
string | $name | |
int | $type |
Definition at line 1239 of file ContentHandler.php.
References $name, $type, and SearchEngine\makeSearchFieldMapping().
ContentHandler::canBeUsedOn | ( | Title | $title | ) |
Determines whether the content type handled by this ContentHandler can be used on the given page.
This default implementation always returns true. Subclasses may override this to restrict the use of this content model to specific locations, typically based on the namespace or some other aspect of the title, such as a special suffix (e.g. ".svg" for SVG content).
Title | $title | The page's title. |
Definition at line 759 of file ContentHandler.php.
References getModelID(), and Hooks\run().
|
protected |
Convenient for checking whether a format provided as a parameter is actually supported.
string | $format | The serialization format to check |
MWException | If the format is not supported by this content handler. |
Definition at line 617 of file ContentHandler.php.
References getModelID(), and isSupportedFormat().
Referenced by TextContentHandler\serializeContent(), and TextContentHandler\unserializeContent().
|
protected |
string | $model_id | The model to check |
MWException | If the model ID is not the ID of the content model supported by this ContentHandler. |
Definition at line 553 of file ContentHandler.php.
Referenced by getAutoDeleteReason(), getUndoContent(), and TextContentHandler\merge3().
ContentHandler::createDifferenceEngine | ( | IContextSource | $context, |
$old = 0 , |
|||
$new = 0 , |
|||
$rcid = 0 , |
|||
$refreshCache = false , |
|||
$unhide = false |
|||
) |
Factory for creating an appropriate DifferenceEngine for this content model.
IContextSource | $context | Context to use, anything else will be ignored. |
int | $old | Revision ID we want to show and diff with. |
int | string | $new | Either a revision ID or one of the strings 'cur', 'prev' or 'next'. |
int | $rcid | FIXME: Deprecated, no longer used. Defaults to 0. |
bool | $refreshCache | If set, refreshes the diff cache. Defaults to false. |
bool | $unhide | If set, allow viewing deleted revs. Defaults to false. |
Definition at line 659 of file ContentHandler.php.
References $differenceEngine, $refreshCache, $unhide, getDiffEngineClass(), and Hooks\run().
ContentHandler::exportTransform | ( | $blob, | |
$format = null |
|||
) |
Applies transformations on export (returns the blob unchanged per default).
Subclasses may override this to perform transformations such as conversion of legacy formats or filtering of internal meta-data.
string | $blob | The blob to be exported |
string | null | $format | The blob's serialization format |
Definition at line 471 of file ContentHandler.php.
References $blob.
ContentHandler::getActionOverrides | ( | ) |
Returns overrides for action handlers.
Classes listed here will be used instead of the default one when (and only when) $wgActions[$action] === true. This allows subclasses to override the default action handlers.
Definition at line 641 of file ContentHandler.php.
|
static |
Definition at line 408 of file ContentHandler.php.
References $handler, $wgContentHandlers, as, getForModelID(), and global.
Referenced by ApiStashEdit\getAllowedParams(), ApiQueryRevisionsBase\getAllowedParams(), ApiEditPage\getAllowedParams(), and ApiParse\getAllowedParams().
ContentHandler::getAutoDeleteReason | ( | Title | $title, |
& | $hasHistory | ||
) |
Auto-generates a deletion reason.
Title | $title | The page's title |
bool | &$hasHistory | Whether the page has a history |
Definition at line 889 of file ContentHandler.php.
References $content, $dbr, $res, $rev, as, checkModelID(), DB_REPLICA, Revision\DELETED_USER, Title\getArticleID(), Revision\newFromTitle(), wfGetDB(), and wfMessage().
Return an applicable auto-summary if one exists for the given edit.
Content | $oldContent | The previous text of the page. |
Content | $newContent | The submitted text of the page. |
int | $flags | Bit mask: a bit mask of flags submitted for the edit. |
Definition at line 807 of file ContentHandler.php.
References $flags, EDIT_NEW, text, and wfMessage().
|
static |
Definition at line 402 of file ContentHandler.php.
References $wgContentHandlers, and global.
Referenced by ApiStashEdit\getAllowedParams(), ApiEditPage\getAllowedParams(), ApiParse\getAllowedParams(), SpecialChangeContentModel\getOptionsForTitle(), SearchEngine\getSearchIndexFields(), and ContentHandlerSanityTest\provideHandlers().
|
static |
Convenience function for getting flat text from a Content object.
This should only be used in the context of backwards compatibility with code that is not yet able to handle Content objects!
If $content is null, this method returns the empty string.
If $content is an instance of TextContent, this method returns the flat text as returned by $content->getNativeData().
If $content is not a TextContent object, the behavior of this method depends on the global $wgContentHandlerTextFallback:
Content | $content |
MWException | If the content is not an instance of TextContent and wgContentHandlerTextFallback was set to 'fail'. |
Definition at line 114 of file ContentHandler.php.
References $content, global, and wfDebugLog().
Referenced by EditPageTest\assertEdit(), Article\fetchContent(), Article\getContent(), Revision\getText(), EditPage\internalAttemptSave(), WikiPage\prepareContentForEdit(), ContentHandlerTest\testGetContentText_NonTextContent_fail(), ContentHandlerTest\testGetContentText_NonTextContent_ignore(), ContentHandlerTest\testGetContentText_NonTextContent_serialize(), ContentHandlerTest\testGetContentText_Null(), and ContentHandlerTest\testGetContentText_TextContent().
ContentHandler::getDataForSearchIndex | ( | WikiPage | $page, |
ParserOutput | $output, | ||
SearchEngine | $engine | ||
) |
Return fields to be indexed by search engine as representation of this document.
Overriding class should call parent function or take care of calling the SearchDataForIndex hook.
WikiPage | $page | Page to index |
ParserOutput | $output | |
SearchEngine | $engine | Search engine for which we are indexing |
Definition at line 1255 of file ContentHandler.php.
References $content, WikiPage\getContent(), and Hooks\run().
Referenced by WikitextContentHandlerTest\testDataIndexFieldsFile().
ContentHandler::getDefaultFormat | ( | ) |
The format used for serialization/deserialization by default by this ContentHandler.
This default implementation will return the first element of the array of formats that was passed to the constructor.
Definition at line 585 of file ContentHandler.php.
Referenced by TextContentHandler\merge3().
|
static |
Returns the name of the default content model to be used for the page with the given title.
Note: There should rarely be need to call this method directly. To determine the actual content model for a given page, use Title::getContentModel().
Which model is to be used by default for the page is determined based on several factors:
If none of the above applies, the wikitext model is used.
Note: this is used by, and may thus not use, Title::getContentModel()
Title | $title |
Definition at line 213 of file ContentHandler.php.
References $ext, CONTENT_MODEL_CSS, CONTENT_MODEL_JAVASCRIPT, CONTENT_MODEL_JSON, CONTENT_MODEL_TEXT, CONTENT_MODEL_WIKITEXT, Title\getNamespace(), MWNamespace\getNamespaceContentModel(), Title\getText(), NS_MEDIAWIKI, NS_USER, and Hooks\run().
Referenced by Revision\checkContentModel(), Title\getContentModel(), Revision\getContentModel(), Revision\insertOn(), MovePage\moveToInternal(), PopulateContentModel\populatePage(), ContentHandlerTest\testGetDefaultModelFor(), WikiPageTest\testIsCountable(), and XmlDumpWriter\writeRevision().
|
protected |
Returns the name of the diff engine to use.
Definition at line 774 of file ContentHandler.php.
References class.
Referenced by createDifferenceEngine().
ContentHandler::getFieldsForSearchIndex | ( | SearchEngine | $engine | ) |
Get fields definition for search index.
SearchEngine | $engine |
Definition at line 1202 of file ContentHandler.php.
References SearchIndexField\FLAG_CASEFOLD, SearchIndexField\INDEX_TYPE_KEYWORD, SearchIndexField\INDEX_TYPE_TEXT, and SearchEngine\makeSearchFieldMapping().
|
static |
Returns the appropriate ContentHandler singleton for the given Content object.
Content | $content |
Definition at line 297 of file ContentHandler.php.
References getForModelID(), and Content\getModel().
Referenced by AbstractContent\getContentHandler().
|
static |
Returns the ContentHandler singleton for the given model ID.
Use the CONTENT_MODEL_XXX constants to identify the desired content model.
ContentHandler singletons are taken from the global $wgContentHandlers array. Keys in that array are model names, the values are either ContentHandler singleton objects, or strings specifying the appropriate subclass of ContentHandler.
If a class name is encountered when looking up the singleton for a given model name, the class is instantiated and the class name is replaced by the resulting singleton in $wgContentHandlers.
If no ContentHandler is defined for the desired $modelId, the ContentHandler may be provided by the ContentHandlerForModelID hook. If no ContentHandler can be determined, an MWException is raised.
string | $modelId | The ID of the content model for which to get a handler. Use CONTENT_MODEL_XXX constants. |
MWException | For internal errors and problems in the configuration. |
MWUnknownContentModelException | If no handler is known for the model ID. |
Definition at line 334 of file ContentHandler.php.
References $handler, $handlers, $wgContentHandlers, global, Hooks\run(), and wfDebugLog().
Referenced by EditPage\__construct(), Revision\checkContentModel(), TextContent\convert(), ApiEditPage\execute(), ApiStashEdit\execute(), TextPassDumper\exportTransform(), ApiQueryRevisionsBase\extractRevisionInfo(), getAllContentFormats(), WikiPage\getAutosummary(), WikiPage\getContentHandler(), WikiRevision\getContentHandler(), Revision\getContentHandler(), EditPage\getCurrentContent(), getForContent(), getForTitle(), SpecialChangeContentModel\getOptionsForTitle(), EditPage\getOriginalContent(), EditPage\getPreloadedContent(), SearchEngine\getSearchIndexFields(), EditPage\importFormData(), Revision\insertOn(), EditPage\isSupportedContentModel(), makeContent(), EditPage\mergeChangesIntoContent(), SpecialChangeContentModel\onSubmit(), ContentHandlerSanityTest\provideHandlers(), WikitextContentHandlerTest\setUp(), EditPage\showConflict(), ContentHandlerTest\testGetFieldsForSearchIndex(), ContentHandlerTest\testGetModelForID(), PopulateContentModel\updateRevisionOrArchiveRows(), and XmlDumpWriter\writeRevision().
|
static |
Returns the appropriate ContentHandler singleton for the given title.
Title | $title |
Definition at line 281 of file ContentHandler.php.
References Title\getContentModel(), and getForModelID().
Referenced by CleanupSpam\cleanupArticle(), MovePageForm\doSubmit(), FeedUtils\formatDiffRow(), BrokenRedirectsPage\formatResult(), DoubleRedirectsPage\formatResult(), Article\generateReason(), ResourceLoaderWikiModule\getContent(), Title\getPageLanguage(), Title\getPageViewLanguage(), MediaWiki\initializeArticle(), EditPage\isSectionEditSupported(), MovePage\isValidMove(), MergeHistory\merge(), MovePage\moveToInternal(), PopulateContentModel\populateRevisionOrArchive(), MovePageForm\showForm(), ContentHandlerTest\testGetForTitle(), ContentHandlerTest\testGetPageLanguage(), and SpecialWhatLinksHere\wlhLink().
|
static |
Returns the localized name for a given content model.
Model names are localized using system messages. Message keys have the form content-model-$name, where $name is getContentModelName( $id ).
string | $name | The content model ID, as given by a CONTENT_MODEL_XXX constant or returned by Revision::getContentModel(). |
Language | null | $lang | The language to parse the message in (since 1.26) |
MWException | If the model ID isn't known. |
Definition at line 389 of file ContentHandler.php.
References $lang, $name, and wfMessage().
Referenced by WikiPage\doEditContent(), ContentModelLogFormatter\getMessageParameters(), SpecialChangeContentModel\getOptionsForTitle(), EditPage\importFormData(), MovePage\isValidMove(), SpecialChangeContentModel\onSubmit(), InfoAction\pageInfo(), ContentHandlerTest\testGetLocalizedName(), and SpecialChangeContentModel\validateTitle().
ContentHandler::getModelID | ( | ) |
Returns the model id that identifies the content model this ContentHandler can handle.
Use with the CONTENT_MODEL_XXX constants.
Definition at line 541 of file ContentHandler.php.
References $mModelID.
Referenced by canBeUsedOn(), and checkFormat().
Get the language in which the content of the given page is written.
This default implementation just returns $wgContLang (except for pages in the MediaWiki namespace)
Note that the pages language is not cacheable, since it may in some cases depend on user settings.
Also note that the page language may or may not depend on the actual content of the page, that is, this method may load the content in order to determine the language.
Title | $title | The page to determine the language for. |
Content | $content | The page's content, if you have it handy, to avoid reloading it. |
Definition at line 693 of file ContentHandler.php.
References $lang, $wgContLang, $wgLang, Language\factory(), Title\getNamespace(), Title\getText(), global, list, NS_MEDIAWIKI, Hooks\run(), MessageCache\singleton(), and wfGetLangObj().
Referenced by TextContentHandler\getDataForSearchIndex(), and getPageViewLanguage().
Get the language in which the content of this page is written when viewed by user.
Defaults to $this->getPageLanguage(), but if the user specified a preferred variant, the variant will be used.
This default implementation just returns $this->getPageLanguage( $title, $content ) unless the user specified a preferred variant.
Note that the pages view language is not cacheable, since it depends on user settings.
Also note that the page language may or may not depend on the actual content of the page, that is, this method may load the content in order to determine the language.
Title | $title | The page to determine the language for. |
Content | $content | The page's content, if you have it handy, to avoid reloading it. |
Definition at line 728 of file ContentHandler.php.
References $content, Language\factory(), Title\getNamespace(), getPageLanguage(), and NS_MEDIAWIKI.
ContentHandler::getParserOutputForIndexing | ( | WikiPage | $page, |
ParserCache | $cache = null |
||
) |
Produce page output suitable for indexing.
Specific content handlers may override it if they need different content handling.
WikiPage | $page | |
ParserCache | $cache |
Definition at line 1288 of file ContentHandler.php.
References $cache, $parserOutput, $revId, WikiPage\getContent(), WikiPage\getRevision(), WikiPage\getTitle(), and WikiPage\makeParserOptions().
ContentHandler::getSupportedFormats | ( | ) |
Returns a list of serialization formats supported by the serializeContent() and unserializeContent() methods of this ContentHandler.
Definition at line 570 of file ContentHandler.php.
References $mSupportedFormats.
Get the Content object that needs to be saved in order to undo all revisions between $undo and $undoafter.
Revisions must belong to the same page, must exist and must not be deleted.
Revision | $current | The current text |
Revision | $undo | The revision to undo |
Revision | $undoafter | Must be an earlier revision than $undo |
Definition at line 994 of file ContentHandler.php.
References $e, checkModelID(), Revision\getContent(), Revision\getId(), and merge3().
ContentHandler::importTransform | ( | $blob, | |
$format = null |
|||
) |
Apply import transformation (per default, returns $blob unchanged).
This gives subclasses an opportunity to transform data blobs on import.
string | $blob | |
string | null | $format |
Definition at line 498 of file ContentHandler.php.
References $blob.
ContentHandler::isParserCacheSupported | ( | ) |
Returns true for content models that support caching using the ParserCache mechanism.
See WikiPage::shouldCheckParserCache().
Definition at line 1075 of file ContentHandler.php.
ContentHandler::isSupportedFormat | ( | $format | ) |
Returns true if $format is a serialization format supported by this ContentHandler, and false otherwise.
Note that if $format is null, this method always returns true, because null means "use the default format".
string | $format | The serialization format to check |
Definition at line 602 of file ContentHandler.php.
Referenced by checkFormat().
|
static |
Convenience function for creating a Content object from a given textual representation.
$text will be deserialized into a Content object of the model specified by $modelId (or, if that is not given, $title->getContentModel()) using the given format.
string | $text | The textual representation, will be unserialized to create the Content object |
Title | $title | The title of the page this text belongs to. Required if $modelId is not provided. |
string | $modelId | The model to deserialize to. If not provided, $title->getContentModel() is used. |
string | $format | The format to use for deserialization. If not given, the model's default format is used. |
MWException | If model ID or format is not supported or if the text can not be unserialized using the format. |
Definition at line 164 of file ContentHandler.php.
References $handler, $title, and getForModelID().
Referenced by PoolWorkArticleView\__construct(), ParserTestRunner\addArticle(), DumpTestCase\addRevision(), FetchTextTest\addRevision(), EditPageTest\assertEdit(), WikiPageTest\createPage(), RevisionStorageTest\createPage(), TestPageProps\createPage(), ApiQueryWatchlistIntegrationTest\doAnonPageEdit(), ApiQueryWatchlistIntegrationTest\doBotPageEdit(), WikiPage\doEdit(), DifferenceEngineTest\doEdits(), ApiQueryWatchlistIntegrationTest\doMinorPageEdit(), ApiQueryWatchlistIntegrationTest\doPageEdit(), ApiQueryWatchlistIntegrationTest\doPatrolledPageEdit(), ApiTestCase\editPage(), CategoryMembershipChangeJobTest\editPageText(), ApiEditPage\execute(), MakeTestEdits\execute(), ImportSiteScripts\execute(), ApiParse\execute(), EditCLI\execute(), ApiStashEdit\execute(), ApiQueryRevisionsBase\extractRevisionInfo(), Article\getContentObject(), MediaWikiTestCase\insertPage(), MessageCacheTest\makePage(), RevisionTest\newTestRevision(), SpecialChangeContentModel\onSubmit(), WikiPage\prepareTextForEdit(), LocalFile\recordUpload2(), RevisionTest\testConstructWithContent(), ApiQueryRevisionsTest\testContentComesWithContentModelAndFormat(), TextContentTest\testDeletionUpdates(), WikiPageTest\testDoEditContent(), ApiEditPageTest\testEditSection(), ContentHandlerTest\testGetAutosummary(), UserTest\testGetEditCount(), RevisionStorageTest\testGetNext(), TextContentTest\testGetParserOutput(), RevisionStorageTest\testGetPrevious(), WikitextContentTest\testGetSecondaryDataUpdates(), RevisionStorageTest\testIsCurrent(), ContentHandlerTest\testMakeContent(), ApiQueryAllPagesTest\testPrefixNormalizationSearchBug(), RefreshLinksPartitionTest\testRefreshLinks(), and EditPage\toEditContent().
|
abstract |
Creates an empty Content object of the type supported by this ContentHandler.
Referenced by ContentHandlerSanityTest\testMakeEmptyContent().
ContentHandler::makeParserOptions | ( | $context | ) |
Get parser options suitable for rendering and caching the article.
IContextSource | User | string | $context | One of the following:
|
MWException |
Definition at line 1048 of file ContentHandler.php.
References $context, $options, $wgContLang, global, ParserOptions\newFromContext(), ParserOptions\newFromUser(), and ParserOptions\newFromUserAndLang().
ContentHandler::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.
This default implementation always returns null. Subclasses supporting redirects must override this method.
Note that subclasses that override this method to return a Content object should also override supportsRedirects() to return true.
Title | $destination | The page to redirect to. |
string | $text | Text to include in the redirect, if possible. |
Definition at line 529 of file ContentHandler.php.
Attempts to merge differences between three versions.
Returns a new Content object for a clean merge and false for failure or a conflict.
This default implementation always returns false.
Content | $oldContent | The page's previous content. |
Content | $myContent | One of the page's conflicting contents. |
Content | $yourContent | One of the page's conflicting contents. |
Definition at line 792 of file ContentHandler.php.
Referenced by getUndoContent().
|
static |
Call a legacy hook that uses text instead of Content objects.
Will log a warning when a matching hook function is registered. If the textual representation of the content is changed by the hook function, a new Content object is constructed from the new text.
string | $event | Event name |
array | $args | Parameters passed to hook functions |
string | null | $deprecatedVersion | Emit a deprecation notice when the hook is run for the provided version |
Definition at line 1147 of file ContentHandler.php.
References $args, $content, as, Hooks\isRegistered(), and Hooks\run().
Referenced by WikiPage\doCreate(), WikiPage\doEditContent(), WikiPage\doModify(), Article\fetchContent(), Article\fetchContentObject(), EditPage\getPreviewText(), DifferenceEngine\renderNewRevision(), EditPage\runPostMergeFilters(), Article\showCssOrJsPage(), EditPage\showDiff(), ContentHandlerTest\testRunLegacyHooks(), and Article\view().
|
abstract |
Serializes a Content object of the type supported by this ContentHandler.
Content | $content | The Content object to serialize |
string | $format | The desired serialization format |
ContentHandler::supportsCategories | ( | ) |
Returns true if this content model supports categories.
The default implementation returns true.
Definition at line 1098 of file ContentHandler.php.
ContentHandler::supportsDirectApiEditing | ( | ) |
Whether or not this content model supports direct editing via ApiEditPage.
Definition at line 1129 of file ContentHandler.php.
References supportsDirectEditing().
ContentHandler::supportsDirectEditing | ( | ) |
Return true if this content model supports direct editing, such as via EditPage.
Definition at line 1120 of file ContentHandler.php.
Referenced by supportsDirectApiEditing(), and WikitextContentHandlerTest\testSupportsDirectEditing().
ContentHandler::supportsRedirects | ( | ) |
Returns true if this content model supports redirects.
This default implementation returns false.
Content models that return true here should also implement ContentHandler::makeRedirectContent to return a Content object.
Definition at line 1111 of file ContentHandler.php.
ContentHandler::supportsSections | ( | ) |
Returns true if this content model supports sections.
This default implementation returns false.
Content models that return true here should also implement Content::getSection, Content::replaceSection, etc. to handle sections..
Definition at line 1088 of file ContentHandler.php.
|
abstract |
Unserializes a Content object of the type supported by this ContentHandler.
string | $blob | Serialized form of the content |
string | $format | The format used for serialization |
|
staticprotected |
A Cache of ContentHandler instances by model id.
Definition at line 306 of file ContentHandler.php.
Referenced by getForModelID().
|
protected |
Definition at line 428 of file ContentHandler.php.
Referenced by getModelID().
|
protected |
Definition at line 433 of file ContentHandler.php.
Referenced by getSupportedFormats().