MediaWiki REL1_35
AbstractContent Class Reference

Base implementation for content objects. More...

Inheritance diagram for AbstractContent:
Collaboration diagram for AbstractContent:

Public Member Functions

 __construct ( $modelId=null)
 Stable to call.
 
 addSectionHeader ( $header)
 Stable to override.
 
 convert ( $toModel, $lossy='')
 This base implementation calls the hook ConvertContent to enable custom conversions.
 
 equals (Content $that=null)
 Decides whether two Content objects are equal.
 
 getContentHandler ()
 
 getDefaultFormat ()
 
 getDeletionUpdates (WikiPage $page, ParserOutput $parserOutput=null)
 Stable to override.
 
 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.
 
 getSecondaryDataUpdates (Title $title, Content $old=null, $recursive=true, ParserOutput $parserOutput=null)
 Returns a list of DataUpdate objects for recording information about this Content in some secondary data store.
 
 getSection ( $sectionId)
 Stable to override.
 
 getSupportedFormats ()
 
 getUltimateRedirectTarget ()
 
 isEmpty ()
 Stable to override.
 
 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=[])
 Stable to override.
 
 prepareSave (WikiPage $page, $flags, $parentRevId, User $user)
 Stable to override.
 
 preSaveTransform (Title $title, User $user, ParserOptions $popts)
 Stable to override.
 
 replaceSection ( $sectionId, Content $with, $sectionTitle='')
 Stable to override.
 
 serialize ( $format=null)
 Stable to override.
 
 updateRedirect (Title $target)
 This default implementation always returns $this.
 
- Public Member Functions inherited from Content
 copy ()
 Return a copy of this Content object.
 
 getNativeData ()
 Returns native representation of the data.
 
 getSize ()
 Returns the content's nominal size in "bogo-bytes".
 
 getTextForSearchIndex ()
 
 getTextForSummary ( $maxLength=250)
 Returns a textual representation of the content suitable for use in edit summaries and log messages.
 
 getWikitextForTransclusion ()
 
 isCountable ( $hasLinks=null)
 Returns true if this content is countable as a "real" wiki page, provided that it's also in a countable location (e.g.
 

Protected Member Functions

 checkFormat ( $format)
 
 checkModelID ( $modelId)
 
 equalsInternal (Content $that)
 Checks whether $that is logically equal to this Content object.
 
 fillParserOutput (Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
 Fills the provided ParserOutput with information derived from the content.
 
 getContentHandlerFactory ()
 

Protected Attributes

string $model_id
 Name of the content model this Content object represents.
 

Detailed Description

Base implementation for content objects.

Stable to extend

Definition at line 39 of file AbstractContent.php.

Constructor & Destructor Documentation

◆ __construct()

AbstractContent::__construct (   $modelId = null)

Stable to call.

Parameters
string | null$modelId
Since
1.21

Reimplemented in WikitextContent.

Definition at line 57 of file AbstractContent.php.

Member Function Documentation

◆ addSectionHeader()

AbstractContent::addSectionHeader (   $header)

Stable to override.

Since
1.21
Parameters
string$header
Returns
Content $this
See also
Content::addSectionHeader

Implements Content.

Reimplemented in WikitextContent.

Definition at line 451 of file AbstractContent.php.

◆ checkFormat()

AbstractContent::checkFormat (   $format)
protected
Since
1.21
Parameters
string$formatThe serialization format to check.
Exceptions
MWExceptionIf the format is not supported by this content handler.

Definition at line 150 of file AbstractContent.php.

◆ checkModelID()

AbstractContent::checkModelID (   $modelId)
protected
Since
1.21
Parameters
string$modelIdThe model to check
Exceptions
MWExceptionIf the provided ID is not the ID of the content model supported by this Content object.

Definition at line 79 of file AbstractContent.php.

Referenced by TextContent\diff().

◆ convert()

AbstractContent::convert (   $toModel,
  $lossy = '' 
)

This base implementation calls the hook ConvertContent to enable custom conversions.

Subclasses may override this to implement conversion for "their" content model.

Stable to override

Parameters
string$toModel
string$lossy
Returns
Content|bool
See also
Content::convert()

Implements Content.

Reimplemented in TextContent, and UnknownContent.

Definition at line 537 of file AbstractContent.php.

◆ equals()

AbstractContent::equals ( Content  $that = null)

Decides whether two Content objects are equal.

Two Content objects MUST not be considered equal if they do not share the same content model. Two Content objects that are equal SHOULD have the same serialization.

This default implementation relies on equalsInternal() to determin whether the Content objects are logically equivalent. Subclasses that need to implement a custom equality check should consider overriding equalsInternal(). Subclasses that override equals() itself MUST make sure that the implementation returns false for $that === null, and true for $that === this. It MUST also return false if $that does not have the same content model.

Stable to override

Since
1.21
Parameters
Content | null$that
Returns
bool
See also
Content::equals

Implements Content.

Definition at line 220 of file AbstractContent.php.

Referenced by CssContent\getRedirectTarget(), and JavaScriptContent\getRedirectTarget().

◆ equalsInternal()

AbstractContent::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.

Stable to override

Parameters
Content$that
Returns
bool

Reimplemented in UnknownContent.

Definition at line 261 of file AbstractContent.php.

References Content\serialize(), and serialize().

◆ fillParserOutput()

AbstractContent::fillParserOutput ( Title  $title,
  $revId,
ParserOptions  $options,
  $generateHtml,
ParserOutput $output 
)
protected

Fills the provided ParserOutput with information derived from the content.

Unless $generateHtml was false, this includes an HTML representation of the content.

This is called by getParserOutput() after consulting the ContentGetParserOutput hook. Subclasses are expected to override this method (or getParserOutput(), if need be). Subclasses of TextContent should generally override getHtml() instead.

This placeholder implementation always throws an exception.

Stable to override

Since
1.24
Parameters
Title$titleContext title for parsing
int | null$revIdID of the revision being rendered. See Parser::parse() for the ramifications.
ParserOptions$options
bool$generateHtmlWhether or not to generate HTML
ParserOutput&$outputThe output object to fill (reference).
Exceptions
MWException

Reimplemented in JsonContent, TextContent, UnknownContent, and WikitextContent.

Definition at line 623 of file AbstractContent.php.

◆ getContentHandler()

AbstractContent::getContentHandler ( )

◆ getContentHandlerFactory()

AbstractContent::getContentHandlerFactory ( )
protected
Returns
IContentHandlerFactory

Definition at line 102 of file AbstractContent.php.

Referenced by TextContent\convert(), and getContentHandler().

◆ getDefaultFormat()

AbstractContent::getDefaultFormat ( )
Since
1.21
See also
Content::getDefaultFormat
Returns
string

Implements Content.

Definition at line 112 of file AbstractContent.php.

◆ getDeletionUpdates()

AbstractContent::getDeletionUpdates ( WikiPage  $page,
ParserOutput  $parserOutput = null 
)

Stable to override.

Since
1.21
Parameters
WikiPage$page
ParserOutput | null$parserOutput
Returns
DeferrableUpdate[]
See also
Content::getDeletionUpdates

Implements Content.

Definition at line 501 of file AbstractContent.php.

◆ getModel()

AbstractContent::getModel ( )

◆ getParserOutput()

AbstractContent::getParserOutput ( Title  $title,
  $revId = null,
ParserOptions  $options = null,
  $generateHtml = true 
)

Returns a ParserOutput object containing information derived from this content.

Most importantly, unless $generateHtml was false, the return value contains an HTML representation of the content.

Subclasses that want to control the parser output may override this, but it is preferred to override fillParserOutput() instead.

Subclasses that override getParserOutput() itself should take care to call the ContentGetParserOutput hook.

Stable to override

Since
1.24
Parameters
Title$titleContext title for parsing
int | null$revIdRevision ID being rendered
ParserOptions | null$options
bool$generateHtmlWhether or not to generate HTML
Returns
ParserOutput Containing information derived from this content.

Implements Content.

Reimplemented in MessageContent.

Definition at line 573 of file AbstractContent.php.

References $title.

Referenced by WikitextContent\isCountable().

◆ getRedirectChain()

AbstractContent::getRedirectChain ( )
Since
1.21
Returns
Title[]|null
See also
Content::getRedirectChain

Implements Content.

Definition at line 312 of file AbstractContent.php.

References $title, $wgMaxRedirects, and Title\isValidRedirectTarget().

Referenced by WikitextContent\fillParserOutput().

◆ getRedirectTarget()

AbstractContent::getRedirectTarget ( )

Subclasses that implement redirects should override this.

Stable to override

Since
1.21
Returns
Title|null
See also
Content::getRedirectTarget

Implements Content.

Reimplemented in CssContent, JavaScriptContent, and WikitextContent.

Definition at line 352 of file AbstractContent.php.

◆ getSecondaryDataUpdates()

AbstractContent::getSecondaryDataUpdates ( Title  $title,
Content  $old = null,
  $recursive = true,
ParserOutput  $parserOutput = null 
)

Returns a list of DataUpdate objects for recording information about this Content in some secondary data store.

This default implementation returns a LinksUpdate object and calls the SecondaryDataUpdates hook.

Subclasses may override this to determine the secondary data updates more efficiently, preferably without the need to generate a parser output object. They should however make sure to call SecondaryDataUpdates to give extensions a chance to inject additional updates.

Stable to override

Since
1.21
Parameters
Title$title
Content | null$old
bool$recursive
ParserOutput | null$parserOutput
Returns
DataUpdate[]
See also
Content::getSecondaryDataUpdates()

Implements Content.

Definition at line 289 of file AbstractContent.php.

References $title.

◆ getSection()

AbstractContent::getSection (   $sectionId)

Stable to override.

Since
1.21
Parameters
string | int$sectionId
Returns
null
See also
Content::getSection

Implements Content.

Reimplemented in WikitextContent.

Definition at line 408 of file AbstractContent.php.

◆ getSupportedFormats()

AbstractContent::getSupportedFormats ( )
Since
1.21
See also
Content::getSupportedFormats
Returns
string[]

Implements Content.

Definition at line 122 of file AbstractContent.php.

◆ getUltimateRedirectTarget()

AbstractContent::getUltimateRedirectTarget ( )
Note
Migrated here from Title::newFromRedirectRecurse.
Since
1.21
Returns
Title|null
See also
Content::getUltimateRedirectTarget

Implements Content.

Definition at line 365 of file AbstractContent.php.

◆ isEmpty()

AbstractContent::isEmpty ( )

Stable to override.

Since
1.21
Returns
bool
See also
Content::isEmpty

Implements Content.

Definition at line 181 of file AbstractContent.php.

◆ isRedirect()

AbstractContent::isRedirect ( )

◆ isSupportedFormat()

AbstractContent::isSupportedFormat (   $format)
Since
1.21
Parameters
string$format
Returns
bool
See also
Content::isSupportedFormat

Implements Content.

Definition at line 135 of file AbstractContent.php.

◆ isValid()

AbstractContent::isValid ( )

Subclasses may override this to implement (light weight) validation.

Stable to override

Since
1.21
Returns
bool Always true.
See also
Content::isValid

Implements Content.

Reimplemented in JsonContent.

Definition at line 195 of file AbstractContent.php.

◆ matchMagicWord()

AbstractContent::matchMagicWord ( MagicWord  $word)

This default implementation always returns false.

Subclasses may override this to supply matching logic.

Stable to override

Since
1.21
Parameters
MagicWord$word
Returns
bool Always false.
See also
Content::matchMagicWord

Implements Content.

Reimplemented in WikitextContent.

Definition at line 520 of file AbstractContent.php.

◆ preloadTransform()

AbstractContent::preloadTransform ( Title  $title,
ParserOptions  $popts,
  $params = [] 
)

Stable to override.

Since
1.21
Parameters
Title$title
ParserOptions$popts
array$params
Returns
Content $this
See also
Content::preloadTransform

Implements Content.

Reimplemented in WikitextContent.

Definition at line 466 of file AbstractContent.php.

◆ prepareSave()

AbstractContent::prepareSave ( WikiPage  $page,
  $flags,
  $parentRevId,
User  $user 
)

Stable to override.

Since
1.21
Parameters
WikiPage$page
int$flags
int$parentRevId
User$user
Returns
Status
See also
Content::prepareSave

Implements Content.

Definition at line 482 of file AbstractContent.php.

◆ preSaveTransform()

AbstractContent::preSaveTransform ( Title  $title,
User  $user,
ParserOptions  $popts 
)

Stable to override.

Since
1.21
Parameters
Title$title
User$user
ParserOptions$popts
Returns
Content $this
See also
Content::preSaveTransform

Implements Content.

Reimplemented in CssContent, JavaScriptContent, JsonContent, TextContent, and WikitextContent.

Definition at line 438 of file AbstractContent.php.

◆ replaceSection()

AbstractContent::replaceSection (   $sectionId,
Content  $with,
  $sectionTitle = '' 
)

Stable to override.

Since
1.21
Parameters
string | int | null | bool$sectionId
Content$with
string$sectionTitle
Returns
null
See also
Content::replaceSection

Implements Content.

Reimplemented in WikitextContent.

Definition at line 423 of file AbstractContent.php.

◆ serialize()

AbstractContent::serialize (   $format = null)

Stable to override.

Since
1.21
Parameters
string | null$format
Returns
string
See also
Content::serialize

Implements Content.

Definition at line 169 of file AbstractContent.php.

◆ updateRedirect()

AbstractContent::updateRedirect ( Title  $target)

This default implementation always returns $this.

Subclasses that implement redirects should override this.

Stable to override

Since
1.21
Parameters
Title$target
Returns
Content $this
See also
Content::updateRedirect

Implements Content.

Reimplemented in CssContent, JavaScriptContent, and WikitextContent.

Definition at line 395 of file AbstractContent.php.

Member Data Documentation

◆ $model_id

string AbstractContent::$model_id
protected

Name of the content model this Content object represents.

Use with CONTENT_MODEL_XXX constants

Since
1.21

Definition at line 48 of file AbstractContent.php.

Referenced by UnknownContent\__construct(), TextContent\__construct(), and getModel().


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