MediaWiki
1.33.1
|
Content handler for wiki text pages. More...
Public Member Functions | |
__construct ( $modelId=CONTENT_MODEL_WIKITEXT) | |
getDataForSearchIndex (WikiPage $page, ParserOutput $parserOutput, SearchEngine $engine) | |
Return fields to be indexed by search engine as representation of this document. More... | |
getFieldsForSearchIndex (SearchEngine $engine) | |
Get fields definition for search index. More... | |
isParserCacheSupported () | |
Returns true, because wikitext supports caching using the ParserCache mechanism. More... | |
makeRedirectContent (Title $destination, $text='') | |
Returns a WikitextContent object representing a redirect to the given destination page. More... | |
serializeContent (Content $content, $format=null) | |
Returns the content's text as-is. More... | |
supportsRedirects () | |
Returns true because wikitext supports redirects. More... | |
supportsSections () | |
Returns true because wikitext supports sections. More... | |
Public Member Functions inherited from TextContentHandler | |
__construct ( $modelId=CONTENT_MODEL_TEXT, $formats=[CONTENT_FORMAT_TEXT]) | |
Constructor, initializing the ContentHandler instance with its model ID and a list of supported formats. More... | |
makeEmptyContent () | |
Creates an empty TextContent object. More... | |
merge3 (Content $oldContent, Content $myContent, Content $yourContent) | |
Attempts to merge differences between three versions. More... | |
supportsDirectEditing () | |
unserializeContent ( $text, $format=null) | |
Unserializes a Content object of the type supported by this ContentHandler. More... | |
Public Member Functions inherited from ContentHandler | |
canBeUsedOn (Title $title) | |
Determines whether the content type handled by this ContentHandler can be used for the main slot of 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=0) | |
Return an applicable auto-summary if one exists for the given edit. More... | |
getChangeTag (Content $oldContent=null, Content $newContent=null, $flags=0) | |
Return an applicable tag if one exists for the given edit or return null. More... | |
getDefaultFormat () | |
The format used for serialization/deserialization by default by this ContentHandler. More... | |
getDeletionUpdates (Title $title, $role) | |
Returns a list of DeferrableUpdate objects for removing information about content in some secondary data store. 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... | |
getSecondaryDataUpdates (Title $title, Content $content, $role, SlotRenderingProvider $slotOutput) | |
Returns a list of DeferrableUpdate objects for recording information about the given Content in some secondary data store. More... | |
getSlotDiffRenderer (IContextSource $context) | |
Get an appropriate SlotDiffRenderer for this content model. More... | |
getSupportedFormats () | |
Returns a list of serialization formats supported by the serializeContent() and unserializeContent() methods of this ContentHandler. More... | |
getUndoContent ( $current, $undo, $undoafter, $undoIsLatest=false) | |
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... | |
isSupportedFormat ( $format) | |
Returns true if $format is a serialization format supported by this ContentHandler, and false otherwise. More... | |
makeParserOptions ( $context) | |
Get parser options suitable for rendering and caching the article. More... | |
supportsCategories () | |
Returns true if this content model supports categories. More... | |
supportsDirectApiEditing () | |
Whether or not this content model supports direct editing via ApiEditPage. More... | |
Protected Member Functions | |
getContentClass () | |
Returns the name of the associated Content class, to be used when creating new objects. More... | |
getFileHandler () | |
Get file handler. 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... | |
getSlotDiffRendererInternal (IContextSource $context) | |
Return the SlotDiffRenderer appropriate for this content handler. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from ContentHandler | |
static | cleanupHandlersCache () |
Clean up handlers cache. More... | |
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... | |
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... | |
Content handler for wiki text pages.
Definition at line 33 of file WikitextContentHandler.php.
WikitextContentHandler::__construct | ( | $modelId = CONTENT_MODEL_WIKITEXT | ) |
Definition at line 35 of file WikitextContentHandler.php.
References CONTENT_FORMAT_WIKITEXT.
|
protected |
Returns the name of the associated Content class, to be used when creating new objects.
Override expected by subclasses.
Reimplemented from TextContentHandler.
Definition at line 39 of file WikitextContentHandler.php.
References class.
Referenced by makeRedirectContent().
WikitextContentHandler::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 |
Reimplemented from TextContentHandler.
Reimplemented in FileContentHandler.
Definition at line 142 of file WikitextContentHandler.php.
References $engine, getFileHandler(), WikiPage\getTitle(), and NS_FILE.
WikitextContentHandler::getFieldsForSearchIndex | ( | SearchEngine | $engine | ) |
Get fields definition for search index.
SearchEngine | $engine |
Reimplemented from TextContentHandler.
Reimplemented in FileContentHandler.
Definition at line 121 of file WikitextContentHandler.php.
References $engine, SearchIndexField\FLAG_NO_HIGHLIGHT, SearchIndexField\FLAG_SCORING, getFileHandler(), and SearchIndexField\INDEX_TYPE_TEXT.
|
protected |
Get file handler.
Definition at line 117 of file WikitextContentHandler.php.
Referenced by getDataForSearchIndex(), and getFieldsForSearchIndex().
WikitextContentHandler::isParserCacheSupported | ( | ) |
Returns true, because wikitext supports caching using the ParserCache mechanism.
Reimplemented from ContentHandler.
Definition at line 109 of file WikitextContentHandler.php.
WikitextContentHandler::makeRedirectContent | ( | Title | $destination, |
$text = '' |
|||
) |
Returns a WikitextContent object representing a redirect to the given destination page.
Title | $destination | The page to redirect to. |
string | $text | Text to include in the redirect, if possible. |
Reimplemented from ContentHandler.
Definition at line 53 of file WikitextContentHandler.php.
References Language\fetchLanguageName(), getContentClass(), Title\getFullText(), Title\getInterwiki(), Title\getNamespace(), and NS_CATEGORY.
Returns the content's text as-is.
Content | $content | |
string | null | $format | The serialization format to check |
Reimplemented from TextContentHandler.
Definition at line 173 of file WikitextContentHandler.php.
References $content, and ContentHandler\checkFormat().
WikitextContentHandler::supportsRedirects | ( | ) |
Returns true because wikitext supports redirects.
Reimplemented from ContentHandler.
Definition at line 84 of file WikitextContentHandler.php.
WikitextContentHandler::supportsSections | ( | ) |
Returns true because wikitext supports sections.
Reimplemented from ContentHandler.
Definition at line 95 of file WikitextContentHandler.php.