41 return WikitextContent::class;
57 $services = MediaWikiServices::getInstance();
63 ->getLanguageNameUtils()
64 ->getLanguageName( $iw,
65 LanguageNameUtils::AUTONYMS,
66 LanguageNameUtils::DEFINED )
72 $mwRedir = $services->getMagicWordFactory()->get(
'redirect' );
73 $redirectText = $mwRedir->getSynonym( 0 ) .
74 ' [[' . $optionalColon . $destination->
getFullText() .
']]';
77 $redirectText .=
"\n" . $text;
81 return new $class( $redirectText );
129 $fields = parent::getFieldsForSearchIndex( $engine );
133 $fields[
'heading']->setFlag( SearchIndexField::FLAG_SCORING );
135 $fields[
'auxiliary_text'] =
138 $fields[
'opening_text'] =
140 $fields[
'opening_text']->setFlag(
141 SearchIndexField::FLAG_SCORING | SearchIndexField::FLAG_NO_HIGHLIGHT
154 $fields = parent::getDataForSearchIndex( $page, $parserOutput, $engine );
157 $fields[
'heading'] = $structure->headings();
159 $fields[
'opening_text'] = $structure->getOpeningText();
160 $fields[
'text'] = $structure->getMainText();
161 $fields[
'auxiliary_text'] = $structure->getAuxiliaryText();
162 $fields[
'defaultsort'] = $structure->getDefaultSort();
166 $fields = array_merge( $fields,
186 return $content->getMessage()->plain();
189 return parent::serializeContent(
$content, $format );
checkFormat( $format)
Convenient for checking whether a format provided as a parameter is actually supported.
Content handler for File: files TODO: this handler s not used directly now, but instead manually call...
Wrapper allowing us to handle a system message as a Content object.
Contain a class for special pages Stable to extend.
makeSearchFieldMapping( $name, $type)
Create a search field definition.
Base content handler implementation for flat text contents.
Represents a title within MediaWiki.
getNamespace()
Get the namespace index, i.e.
getFullText()
Get the prefixed title with spaces, plus any fragment (part beginning with '#')
getInterwiki()
Get the interwiki prefix.
Class representing a MediaWiki article and history.
getTitle()
Get the title object of the article.
Class allowing to explore structure of parsed wikitext.
Content handler for wiki text pages.
getContentClass()
Returns the name of the associated Content class, to be used when creating new objects.
supportsRedirects()
Returns true because wikitext supports redirects.
getFieldsForSearchIndex(SearchEngine $engine)
Get fields definition for search index.
getFileHandler()
Get file handler.
makeRedirectContent(Title $destination, $text='')
Returns a WikitextContent object representing a redirect to the given destination page.
isParserCacheSupported()
Returns true, because wikitext supports caching using the ParserCache mechanism.
__construct( $modelId=CONTENT_MODEL_WIKITEXT)
serializeContent(Content $content, $format=null)
Returns the content's text as-is.
supportsSections()
Returns true because wikitext supports sections.
getDataForSearchIndex(WikiPage $page, ParserOutput $parserOutput, SearchEngine $engine)
Return fields to be indexed by search engine as representation of this document.
const CONTENT_MODEL_WIKITEXT
const CONTENT_FORMAT_WIKITEXT
Base interface for content objects.