MediaWiki REL1_40
|
Content object implementation representing unknown content. More...
Inherits AbstractContent.
Public Member Functions | |
__construct ( $data, $model_id) | |
convert ( $toModel, $lossy='') | |
copy () | |
getData () | |
getNativeData () | |
getSize () | |
Returns the data size in bytes. | |
getTextForSearchIndex () | |
Returns an empty string. | |
getTextForSummary ( $maxlength=250) | |
Returns an empty string. | |
getWikitextForTransclusion () | |
isCountable ( $hasLinks=null) | |
Returns false. | |
serialize ( $format=null) | |
Public Member Functions inherited from AbstractContent | |
__construct ( $modelId=null) | |
addSectionHeader ( $header) | |
equals (Content $that=null) | |
Decides whether two Content objects are equal. | |
getContentHandler () | |
getDefaultFormat () | |
getModel () | |
getParserOutput (Title $title, $revId=null, ParserOptions $options=null, $generateHtml=true) | |
Returns a ParserOutput object containing information derived from this content. | |
getRedirectChain () | |
getRedirectTarget () | |
Subclasses that implement redirects should override this. | |
getSection ( $sectionId) | |
getSupportedFormats () | |
getUltimateRedirectTarget () | |
isEmpty () | |
isRedirect () | |
isSupportedFormat ( $format) | |
isValid () | |
Subclasses may override this to implement (light weight) validation. | |
matchMagicWord (MagicWord $word) | |
This default implementation always returns false. | |
preloadTransform (Title $title, ParserOptions $popts, $params=[]) | |
prepareSave (WikiPage $page, $flags, $parentRevId, User $user) | |
preSaveTransform (Title $title, User $user, ParserOptions $popts) | |
replaceSection ( $sectionId, Content $with, $sectionTitle='') | |
updateRedirect (Title $target) | |
This default implementation always returns $this. | |
Protected Member Functions | |
equalsInternal (Content $that) | |
Checks whether $that is logically equal to this Content object. | |
Protected Member Functions inherited from AbstractContent | |
checkFormat ( $format) | |
checkModelID ( $modelId) | |
fillParserOutput (Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output) | |
Fills the provided ParserOutput with information derived from the content. | |
getContentHandlerFactory () | |
Additional Inherited Members | |
Protected Attributes inherited from AbstractContent | |
string | $model_id |
Name of the content model this Content object represents. | |
Content object implementation representing unknown content.
This can be used to handle content for which no ContentHandler exists on the system, perhaps because the extension that provided it has been removed.
FallbackContent instances are immutable.
Definition at line 38 of file FallbackContent.php.
FallbackContent::__construct | ( | $data, | |
$model_id ) |
string | $data | |
string | $model_id | The model ID to handle |
Definition at line 47 of file FallbackContent.php.
References AbstractContent\$model_id.
FallbackContent::convert | ( | $toModel, | |
$lossy = '' ) |
string | $toModel | |
string | $lossy |
Reimplemented from AbstractContent.
Definition at line 137 of file FallbackContent.php.
FallbackContent::copy | ( | ) |
|
protected |
Checks whether $that is logically equal to this Content object.
This method can be overwritten by subclasses that need to implement custom equality checks.
This default implementation checks whether the serializations of $this and $that are the same: $this->serialize() === $that->serialize()
Implementors can assume that $that is an instance of the same class as the present Content object, as long as equalsInternal() is only called by the standard implementation of equals().
Content | $that |
Reimplemented from AbstractContent.
Definition at line 141 of file FallbackContent.php.
References getData().
FallbackContent::getData | ( | ) |
Definition at line 103 of file FallbackContent.php.
Referenced by equalsInternal(), getNativeData(), and serialize().
FallbackContent::getNativeData | ( | ) |
Reimplemented from AbstractContent.
Definition at line 96 of file FallbackContent.php.
References getData().
FallbackContent::getSize | ( | ) |
Returns the data size in bytes.
Implements Content.
Definition at line 77 of file FallbackContent.php.
FallbackContent::getTextForSearchIndex | ( | ) |
Returns an empty string.
Implements Content.
Definition at line 121 of file FallbackContent.php.
FallbackContent::getTextForSummary | ( | $maxlength = 250 | ) |
Returns an empty string.
int | $maxlength |
Implements Content.
Definition at line 68 of file FallbackContent.php.
FallbackContent::getWikitextForTransclusion | ( | ) |
FallbackContent::isCountable | ( | $hasLinks = null | ) |
Returns false.
bool | null | $hasLinks | If it is known whether this content contains links, provide this information here, to avoid redundant parsing to find out. |
Implements Content.
Definition at line 89 of file FallbackContent.php.
FallbackContent::serialize | ( | $format = null | ) |
string | null | $format |
Reimplemented from AbstractContent.
Definition at line 112 of file FallbackContent.php.
References getData().