MediaWiki master
FallbackContent Class Reference

Content object implementation representing unknown content. More...

Inherits AbstractContent.

Collaboration diagram for FallbackContent:

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 ()
 
 getRedirectTarget ()
 Subclasses that implement redirects should override this.
 
 getSection ( $sectionId)
 
 getSupportedFormats ()
 
 isEmpty ()
 
 isRedirect ()
 
 isSupportedFormat ( $format)
 
 isValid ()
 Subclasses may override this to implement (light weight) validation.
 
 matchMagicWord (MagicWord $word)
 This default implementation always returns false.
 
 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)
 
 getContentHandlerFactory ()
 

Additional Inherited Members

- Protected Attributes inherited from AbstractContent
string $model_id
 Name of the content model this Content object represents.
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ __construct()

FallbackContent::__construct ( $data,
$model_id )
Parameters
string$data
string$model_idThe model ID to handle

Definition at line 47 of file FallbackContent.php.

References AbstractContent\$model_id.

Member Function Documentation

◆ convert()

FallbackContent::convert ( $toModel,
$lossy = '' )
Parameters
string$toModel
string$lossy
Returns
false

Reimplemented from AbstractContent.

Definition at line 137 of file FallbackContent.php.

◆ copy()

FallbackContent::copy ( )
Returns
Content $this

Implements Content.

Definition at line 56 of file FallbackContent.php.

◆ equalsInternal()

FallbackContent::equalsInternal ( Content $that)
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().

Note
Do not call this method directly, call equals() instead.
Stability: stable
to override
Parameters
Content$that
Returns
bool

Reimplemented from AbstractContent.

Definition at line 141 of file FallbackContent.php.

References getData().

◆ getData()

FallbackContent::getData ( )
Returns
string data of unknown format and meaning

Definition at line 103 of file FallbackContent.php.

Referenced by equalsInternal(), getNativeData(), and serialize().

◆ getNativeData()

FallbackContent::getNativeData ( )
Returns
string data of unknown format and meaning

Reimplemented from AbstractContent.

Definition at line 96 of file FallbackContent.php.

References getData().

◆ getSize()

FallbackContent::getSize ( )

Returns the data size in bytes.

Returns
int

Implements Content.

Definition at line 77 of file FallbackContent.php.

◆ getTextForSearchIndex()

FallbackContent::getTextForSearchIndex ( )

Returns an empty string.

Returns
string The raw text.

Implements Content.

Definition at line 121 of file FallbackContent.php.

◆ getTextForSummary()

FallbackContent::getTextForSummary ( $maxlength = 250)

Returns an empty string.

Parameters
int$maxlength
Returns
string

Implements Content.

Definition at line 68 of file FallbackContent.php.

◆ getWikitextForTransclusion()

FallbackContent::getWikitextForTransclusion ( )
Returns
false

Implements Content.

Definition at line 128 of file FallbackContent.php.

◆ isCountable()

FallbackContent::isCountable ( $hasLinks = null)

Returns false.

Parameters
bool | null$hasLinksIf it is known whether this content contains links, provide this information here, to avoid redundant parsing to find out.
Returns
bool

Implements Content.

Definition at line 89 of file FallbackContent.php.

◆ serialize()

FallbackContent::serialize ( $format = null)
Parameters
string | null$format
Returns
string data of unknown format and meaning

Reimplemented from AbstractContent.

Definition at line 112 of file FallbackContent.php.

References getData().


The documentation for this class was generated from the following file: