MediaWiki REL1_35
Revision Class Reference
Inheritance diagram for Revision:
Collaboration diagram for Revision:

Public Member Functions

 __construct ( $row, $queryFlags=0, Title $title=null)
 
 getComment ( $audience=self::FOR_PUBLIC, User $user=null)
 
 getContent ( $audience=self::FOR_PUBLIC, User $user=null)
 Fetch revision content if it's available to the specified audience.
 
 getContentFormat ()
 Returns the content format for the main slot of this revision.
 
 getContentHandler ()
 Returns the content handler appropriate for this revision's content model.
 
 getContentModel ()
 Returns the content model for the main slot of this revision.
 
 getId ()
 Get revision ID.
 
 getNext ()
 Get next revision for this title.
 
 getPage ()
 Get the page ID.
 
 getParentId ()
 Get parent revision ID (the original previous page revision)
 
 getPrevious ()
 Get previous revision for this title.
 
 getRecentChange ( $flags=0)
 Get the RC object belonging to the current revision, if there's one.
 
 getRevisionRecord ()
 
 getSerializedData ()
 Get original serialized data (without checking view restrictions)
 
 getSha1 ()
 Returns the base36 sha1 of the content in this revision, or null if unknown.
 
 getSize ()
 Returns the length of the text in this revision, or null if unknown.
 
 getTextId ()
 Get the ID of the row of the text table that contains the content of the revision's main slot, if that content is stored in the text table.
 
 getTimestamp ()
 
 getTitle ()
 Returns the title of the page associated with this entry.
 
 getUser ( $audience=self::FOR_PUBLIC, User $user=null)
 Fetch revision's user id if it's available to the specified audience.
 
 getUserText ( $audience=self::FOR_PUBLIC, User $user=null)
 Fetch revision's username if it's available to the specified audience.
 
 getVisibility ()
 Get the deletion bitfield of the revision.
 
 insertOn ( $dbw)
 Insert a new revision into the database, returning the new revision ID number on success and dies horribly on failure.
 
 isCurrent ()
 
 isDeleted ( $field)
 
 isMinor ()
 
 isUnpatrolled ()
 
 setId ( $id)
 Set the revision ID.
 
 setTitle ( $title)
 Set the title of the revision.
 
 setUserIdAndName ( $id, $name)
 Set the user ID/name.
 
 userCan ( $field, User $user=null)
 Determine if the current user is allowed to view a particular field of this revision, if it's marked as deleted.
 

Static Public Member Functions

static base36Sha1 ( $text)
 Get the base 36 SHA-1 value for a string of text.
 
static compressRevisionText (&$text)
 If $wgCompressRevisions is enabled, we will compress data.
 
static countByPageId ( $db, $id)
 Get count of revisions per page...not very efficient.
 
static countByTitle ( $db, $title)
 Get count of revisions per page...not very efficient.
 
static decompressRevisionText ( $text, $flags)
 Re-converts revision text according to it's flags.
 
static getArchiveQueryInfo ()
 Return the tables, fields, and join conditions to be selected to create a new archived revision object.
 
static getParentLengths ( $db, array $revIds)
 Do a batched query to get the parent revision lengths.
 
static getQueryInfo ( $options=[])
 Return the tables, fields, and join conditions to be selected to create a new revision object.
 
static getRevisionText ( $row, $prefix='old_', $wiki=false)
 Get revision text associated with an old or archive row.
 
static getTimestampFromId ( $title, $id, $flags=0)
 Get rev_timestamp from rev_id, without loading the rest of the row.
 
static loadFromPageId ( $db, $pageid, $id=0)
 Load either the current, or a specified, revision that's attached to a given page.
 
static loadFromTimestamp ( $db, $title, $timestamp)
 Load the revision for the given title with the given timestamp.
 
static loadFromTitle ( $db, $title, $id=0)
 Load either the current, or a specified, revision that's attached to a given page.
 
static newFromArchiveRow ( $row, $overrides=[])
 Make a fake revision object from an archive table row.
 
static newFromId ( $id, $flags=0)
 Load a page revision from a given revision ID number.
 
static newFromPageId ( $pageId, $revId=0, $flags=0)
 Load either the current, or a specified, revision that's attached to a given page ID.
 
static newFromRow ( $row)
 
static newFromTitle (LinkTarget $linkTarget, $id=0, $flags=0)
 Load either the current, or a specified, revision that's attached to a given link target.
 
static newKnownCurrent (IDatabase $db, $pageIdOrTitle, $revId=0)
 Load a revision based on a known page ID and current revision ID from the DB.
 
static newNullRevision ( $dbw, $pageId, $summary, $minor, $user=null)
 Create a new null-revision for insertion into a page's history.
 
static userCanBitfield ( $bitfield, $field, User $user=null, Title $title=null)
 Determine if the current user is allowed to view a particular field of this revision, if it's marked as deleted.
 
static userWasLastToEdit ( $db, $pageId, $userId, $since)
 Check if no edits were made by other users since the time a user started editing the page.
 

Public Attributes

const DELETED_COMMENT = RevisionRecord::DELETED_COMMENT
 
const DELETED_RESTRICTED = RevisionRecord::DELETED_RESTRICTED
 
const DELETED_TEXT = RevisionRecord::DELETED_TEXT
 
const DELETED_USER = RevisionRecord::DELETED_USER
 
const FOR_PUBLIC = RevisionRecord::FOR_PUBLIC
 
const FOR_THIS_USER = RevisionRecord::FOR_THIS_USER
 
const RAW = RevisionRecord::RAW
 
const SUPPRESSED_ALL = RevisionRecord::SUPPRESSED_ALL
 
const SUPPRESSED_USER = RevisionRecord::SUPPRESSED_USER
 
const TEXT_CACHE_GROUP = SqlBlobStore::TEXT_CACHE_GROUP
 
- Public Attributes inherited from IDBAccessObject
const READ_LOCKING = self::READ_LATEST | 2
 Constants for object loading bitfield flags (higher => higher QoS)
 
const READ_NONE = -1
 

Private Member Functions

 ensureTitle ( $row, $queryFlags, $title=null)
 Make sure we have some Title object for use by the constructor.
 
 getMainSlotRaw ()
 

Static Private Member Functions

static getBlobStore ( $wiki=false)
 
static getRevisionFactory ()
 
static getRevisionLookup ()
 
static getRevisionStore ( $wiki=false)
 

Private Attributes

RevisionRecord $mRecord
 

Detailed Description

Deprecated:
since 1.31, use RevisionRecord, RevisionStore, and BlobStore instead. Hard deprecated since 1.35

Definition at line 40 of file Revision.php.

Constructor & Destructor Documentation

◆ __construct()

Revision::__construct (   $row,
  $queryFlags = 0,
Title  $title = null 
)
Parameters
object | array | RevisionRecord$rowEither a database row or an array
int$queryFlags
Title | null$title

Since 1.35, constructing with anything other than a RevisionRecord is hard deprecated (since 1.31 the entire class is deprecated)

Definition at line 365 of file Revision.php.

References $title, ensureTitle(), getRevisionFactory(), and wfDeprecated().

Member Function Documentation

◆ base36Sha1()

static Revision::base36Sha1 (   $text)
static

Get the base 36 SHA-1 value for a string of text.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
string$text
Returns
string

Definition at line 1052 of file Revision.php.

References wfDeprecated().

◆ compressRevisionText()

static Revision::compressRevisionText ( $text)
static

If $wgCompressRevisions is enabled, we will compress data.

The input string is modified in place. Return value is the flags field: contains 'gzip' if the data is compressed, and 'utf-8' if we're saving in UTF-8 mode.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
string&$text
Returns
string

Definition at line 988 of file Revision.php.

References getBlobStore(), and wfDeprecated().

◆ countByPageId()

static Revision::countByPageId (   $db,
  $id 
)
static

Get count of revisions per page...not very efficient.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
IDatabase$db
int$idPage id
Returns
int

Definition at line 1165 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ countByTitle()

static Revision::countByTitle (   $db,
  $title 
)
static

Get count of revisions per page...not very efficient.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
IDatabase$db
Title$title
Returns
int

Definition at line 1179 of file Revision.php.

References $title, getRevisionStore(), and wfDeprecated().

◆ decompressRevisionText()

static Revision::decompressRevisionText (   $text,
  $flags 
)
static

Re-converts revision text according to it's flags.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
string | false$text
array$flagsCompression flags
Returns
string|bool Decompressed text, or false on failure

Definition at line 1002 of file Revision.php.

References getBlobStore(), and wfDeprecated().

◆ ensureTitle()

Revision::ensureTitle (   $row,
  $queryFlags,
  $title = null 
)
private

Make sure we have some Title object for use by the constructor.

For B/C, the constructor shouldn't fail even for a bad page ID or bad revision ID.

Parameters
array | object$row
int$queryFlags
Title | null$title
Returns
Title $title if not null, or a Title constructed from information in $row.

Definition at line 409 of file Revision.php.

References $title, getRevisionStore(), NS_SPECIAL, and wfLogWarning().

Referenced by __construct().

◆ getArchiveQueryInfo()

static Revision::getArchiveQueryInfo ( )
static

Return the tables, fields, and join conditions to be selected to create a new archived revision object.

Since
1.31
Deprecated:
since 1.31 (soft), 1.35 (hard), use RevisionStore::getArchiveQueryInfo() instead.
Returns
array With three keys:
  • tables: (string[]) to include in the $table to IDatabase->select()
  • fields: (string[]) to include in the $vars to IDatabase->select()
  • joins: (array) to include in the $join_conds to IDatabase->select()

Definition at line 335 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ getBlobStore()

static Revision::getBlobStore (   $wiki = false)
staticprivate
Parameters
bool | string$wikiThe ID of the target wiki database. Use false for the local wiki.
Returns
SqlBlobStore

Definition at line 92 of file Revision.php.

Referenced by compressRevisionText(), decompressRevisionText(), and getTextId().

◆ getComment()

Revision::getComment (   $audience = self::FOR_PUBLIC,
User  $user = null 
)
Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
int$audienceOne of: Revision::FOR_PUBLIC to be displayed to all users Revision::FOR_THIS_USER to be displayed to the given user Revision::RAW get the text regardless of permissions
User | null$userUser object to check for, only if FOR_THIS_USER is passed to the $audience parameter (not passing for FOR_THIS_USER is deprecated since 1.35)
Returns
string|null Returns null if the specified audience does not have access to the comment.

Definition at line 700 of file Revision.php.

References wfDeprecated().

◆ getContent()

Revision::getContent (   $audience = self::FOR_PUBLIC,
User  $user = null 
)

Fetch revision content if it's available to the specified audience.

If the specified audience does not have the ability to view this revision, or the content could not be loaded, null will be returned.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
int$audienceOne of: Revision::FOR_PUBLIC to be displayed to all users Revision::FOR_THIS_USER to be displayed to $user Revision::RAW get the text regardless of permissions
User | null$userUser object to check for, only if FOR_THIS_USER is passed to the $audience parameter
Since
1.21
Returns
Content|null

Definition at line 786 of file Revision.php.

References wfDeprecated().

◆ getContentFormat()

Revision::getContentFormat ( )

Returns the content format for the main slot of this revision.

If no content format was stored in the database, the default format for this revision's content model is returned.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
string The content format id associated with this revision, see the CONTENT_FORMAT_XXX constants.

Definition at line 854 of file Revision.php.

References getContentHandler(), getMainSlotRaw(), and wfDeprecated().

◆ getContentHandler()

Revision::getContentHandler ( )

Returns the content handler appropriate for this revision's content model.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Exceptions
MWException
Returns
ContentHandler

Definition at line 876 of file Revision.php.

References getContentModel(), and wfDeprecated().

Referenced by getContentFormat(), and WikiPage\getUndoContent().

◆ getContentModel()

Revision::getContentModel ( )

Returns the content model for the main slot of this revision.

If no content model was stored in the database, the default content model for the title is used to determine the content model to use. If no title is know, CONTENT_MODEL_WIKITEXT is used as a last resort.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
string The content model id associated with this revision, see the CONTENT_MODEL_XXX constants.

Definition at line 829 of file Revision.php.

References getMainSlotRaw(), getTitle(), and wfDeprecated().

Referenced by getContentHandler().

◆ getId()

Revision::getId ( )

Get revision ID.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
int|null

Definition at line 460 of file Revision.php.

References wfDeprecated().

◆ getMainSlotRaw()

Revision::getMainSlotRaw ( )
private
Returns
SlotRecord|null

Definition at line 514 of file Revision.php.

Referenced by getContentFormat(), getContentModel(), getSerializedData(), and getTextId().

◆ getNext()

Revision::getNext ( )

Get next revision for this title.

Deprecated:
since 1.31 (soft), 1.35 (hard), use RevisionLookup::getNextRevision instead
Returns
Revision|null

Definition at line 924 of file Revision.php.

References getRevisionLookup(), getTitle(), and wfDeprecated().

◆ getPage()

Revision::getPage ( )

Get the page ID.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
int|null

Definition at line 630 of file Revision.php.

References wfDeprecated().

◆ getParentId()

Revision::getParentId ( )

Get parent revision ID (the original previous page revision)

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
int|null The ID of the parent revision. 0 indicates that there is no parent revision. Null indicates that the parent revision is not known.

Definition at line 551 of file Revision.php.

References wfDeprecated().

◆ getParentLengths()

static Revision::getParentLengths (   $db,
array  $revIds 
)
static

Do a batched query to get the parent revision lengths.

Deprecated:
in 1.31, use RevisionStore::getRevisionSizes instead. Hard deprecated since 1.35.
Parameters
IDatabase$db
array$revIds
Returns
array

Definition at line 350 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ getPrevious()

Revision::getPrevious ( )

Get previous revision for this title.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
Revision|null

Definition at line 911 of file Revision.php.

References getRevisionLookup(), getTitle(), and wfDeprecated().

◆ getQueryInfo()

static Revision::getQueryInfo (   $options = [])
static

Return the tables, fields, and join conditions to be selected to create a new revision object.

Since
1.31
Deprecated:
since 1.31 (soft), 1.35 (hard), use RevisionStore::getQueryInfo() instead.
Parameters
array$optionsAny combination of the following strings
  • 'page': Join with the page table, and select fields to identify the page
  • 'user': Join with the user table, and select the user name
  • 'text': Join with the text table, and select fields to load page text
Returns
array With three keys:
  • tables: (string[]) to include in the $table to IDatabase->select()
  • fields: (string[]) to include in the $vars to IDatabase->select()
  • joins: (array) to include in the $join_conds to IDatabase->select()

Definition at line 319 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ getRecentChange()

Revision::getRecentChange (   $flags = 0)

Get the RC object belonging to the current revision, if there's one.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
int$flags(optional) $flags include: Revision::READ_LATEST : Select the data from the master
Since
1.22
Returns
RecentChange|null

Definition at line 741 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ getRevisionFactory()

static Revision::getRevisionFactory ( )
staticprivate
Returns
RevisionFactory

Definition at line 83 of file Revision.php.

Referenced by __construct(), newFromArchiveRow(), and newFromRow().

◆ getRevisionLookup()

static Revision::getRevisionLookup ( )
staticprivate
Returns
RevisionLookup

Definition at line 76 of file Revision.php.

Referenced by getNext(), getPrevious(), newFromId(), newFromPageId(), newFromTitle(), and newKnownCurrent().

◆ getRevisionRecord()

Revision::getRevisionRecord ( )
Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
RevisionRecord

Definition at line 448 of file Revision.php.

References $mRecord, and wfDeprecated().

Referenced by WikiPage\getUndoContent(), and LinksUpdate\setRevision().

◆ getRevisionStore()

static Revision::getRevisionStore (   $wiki = false)
staticprivate

◆ getRevisionText()

static Revision::getRevisionText (   $row,
  $prefix = 'old_',
  $wiki = false 
)
static

Get revision text associated with an old or archive row.

If the text field is not included, this uses RevisionStore to load the appropriate slot and return its serialized content. This is the default backwards-compatibility behavior when reading from the MCR aware database schema is enabled. For this to work, either the revision ID or the page ID must be included in the row.

When using the old text field, the flags field must also be set. Including the old_id field will activate cache usage as long as the $wiki parameter is not set.

Deprecated:
since 1.32, use RevisionStore::newRevisionFromRow instead.
Parameters
stdClass$rowThe text data. If a falsy value is passed instead, false is returned.
string$prefixTable prefix (default 'old_')
string | bool$wikiThe name of the wiki to load the revision text from (same as the wiki $row was loaded from) or false to indicate the local wiki (this is the default). Otherwise, it must be a symbolic wiki database identifier as understood by the LoadBalancer class.
Returns
string|false Text the text requested or false on failure

Definition at line 951 of file Revision.php.

References $content, getRevisionStore(), and wfDeprecated().

◆ getSerializedData()

Revision::getSerializedData ( )

Get original serialized data (without checking view restrictions)

Since
1.21
Deprecated:
since 1.31 (soft), 1.35 (hard), use BlobStore::getBlob instead.
Returns
string

Definition at line 811 of file Revision.php.

References getMainSlotRaw(), and wfDeprecated().

◆ getSha1()

Revision::getSha1 ( )

Returns the base36 sha1 of the content in this revision, or null if unknown.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
string|null

Definition at line 579 of file Revision.php.

References wfDeprecated().

◆ getSize()

Revision::getSize ( )

Returns the length of the text in this revision, or null if unknown.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
int|null

Definition at line 563 of file Revision.php.

References wfDeprecated().

◆ getTextId()

Revision::getTextId ( )

Get the ID of the row of the text table that contains the content of the revision's main slot, if that content is stored in the text table.

If the content is stored elsewhere, this returns null.

Deprecated:
since 1.31 (soft), 1.35 (hard), use RevisionRecord()->getSlot()->getContentAddress() to get that actual address that can be used with BlobStore::getBlob(); or use RevisionRecord::hasSameContent() to check if two revisions have the same content.
Returns
int|null

Definition at line 535 of file Revision.php.

References getBlobStore(), getMainSlotRaw(), and wfDeprecated().

◆ getTimestamp()

Revision::getTimestamp ( )
Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
string

Definition at line 889 of file Revision.php.

References wfDeprecated().

◆ getTimestampFromId()

static Revision::getTimestampFromId (   $title,
  $id,
  $flags = 0 
)
static

Get rev_timestamp from rev_id, without loading the rest of the row.

Deprecated:
since 1.35
Parameters
Title$title(ignored since 1.34)
int$id
int$flags
Returns
string|bool False if not found

Definition at line 1151 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ getTitle()

Revision::getTitle ( )

Returns the title of the page associated with this entry.

Since 1.31, this will never return null.

Deprecated:
since 1.31 (soft), 1.35 (hard)

Will do a query, when title is not set and id is given.

Returns
Title

Definition at line 598 of file Revision.php.

References wfDeprecated().

Referenced by getContentModel(), getNext(), and getPrevious().

◆ getUser()

Revision::getUser (   $audience = self::FOR_PUBLIC,
User  $user = null 
)

Fetch revision's user id if it's available to the specified audience.

If the specified audience does not have access to it, zero will be returned.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
int$audienceOne of: Revision::FOR_PUBLIC to be displayed to all users Revision::FOR_THIS_USER to be displayed to the given user Revision::RAW get the ID regardless of permissions
User | null$userUser object to check for, only if FOR_THIS_USER is passed to the $audience parameter (not passing for FOR_THIS_USER is deprecated since 1.35)
Returns
int

Definition at line 650 of file Revision.php.

References wfDeprecated().

◆ getUserText()

Revision::getUserText (   $audience = self::FOR_PUBLIC,
User  $user = null 
)

Fetch revision's username if it's available to the specified audience.

If the specified audience does not have access to the username, an empty string will be returned.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
int$audienceOne of: Revision::FOR_PUBLIC to be displayed to all users Revision::FOR_THIS_USER to be displayed to the given user Revision::RAW get the text regardless of permissions
User | null$userUser object to check for, only if FOR_THIS_USER is passed to the $audience parameter (not passing for FOR_THIS_USER is deprecated since 1.35)
Returns
string

Definition at line 676 of file Revision.php.

References wfDeprecated().

◆ getVisibility()

Revision::getVisibility ( )

Get the deletion bitfield of the revision.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
int

Definition at line 765 of file Revision.php.

References wfDeprecated().

◆ insertOn()

Revision::insertOn (   $dbw)

Insert a new revision into the database, returning the new revision ID number on success and dies horribly on failure.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
IDatabase$dbw(master connection)
Exceptions
MWException
Returns
int The revision ID

Definition at line 1022 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ isCurrent()

Revision::isCurrent ( )
Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
bool

Definition at line 899 of file Revision.php.

References wfDeprecated().

◆ isDeleted()

Revision::isDeleted (   $field)
Parameters
int$fieldOne of DELETED_* bitfield constants
Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
bool

Definition at line 753 of file Revision.php.

References wfDeprecated().

◆ isMinor()

Revision::isMinor ( )
Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
bool

Definition at line 716 of file Revision.php.

References wfDeprecated().

◆ isUnpatrolled()

Revision::isUnpatrolled ( )
Deprecated:
since 1.31 (soft), 1.35 (hard)
Returns
int Rcid of the unpatrolled row, zero if there isn't one

Definition at line 725 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ loadFromPageId()

static Revision::loadFromPageId (   $db,
  $pageid,
  $id = 0 
)
static

Load either the current, or a specified, revision that's attached to a given page.

If not attached to that page, will return null.

Deprecated:
since 1.31, use RevisionStore::getRevisionByPageId() instead. Hard deprecated since 1.35
Parameters
IDatabase$db
int$pageid
int$id
Returns
Revision|null

Definition at line 261 of file Revision.php.

References getRevisionStore(), and wfDeprecated().

◆ loadFromTimestamp()

static Revision::loadFromTimestamp (   $db,
  $title,
  $timestamp 
)
static

Load the revision for the given title with the given timestamp.

WARNING: Timestamps may in some circumstances not be unique, so this isn't the best key to use.

Deprecated:
since 1.31, use RevisionStore::getRevisionByTimestamp() or RevisionStore::loadRevisionFromTimestamp() instead. Hard deprecated since 1.35
Parameters
IDatabase$db
Title$title
string$timestamp
Returns
Revision|null

Definition at line 299 of file Revision.php.

References $title, getRevisionStore(), and wfDeprecated().

◆ loadFromTitle()

static Revision::loadFromTitle (   $db,
  $title,
  $id = 0 
)
static

Load either the current, or a specified, revision that's attached to a given page.

If not attached to that page, will return null.

Deprecated:
since 1.31, use RevisionStore::getRevisionByTitle() instead. Hard deprecated in 1.35
Parameters
IDatabase$db
Title$title
int$id
Returns
Revision|null

Definition at line 280 of file Revision.php.

References $title, getRevisionStore(), and wfDeprecated().

◆ newFromArchiveRow()

static Revision::newFromArchiveRow (   $row,
  $overrides = [] 
)
static

Make a fake revision object from an archive table row.

This is queried for permissions or even inserted (as in Special:Undelete)

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
object$row
array$overrides
Exceptions
MWException
Returns
Revision

Definition at line 183 of file Revision.php.

References $title, getRevisionFactory(), and wfDeprecated().

◆ newFromId()

static Revision::newFromId (   $id,
  $flags = 0 
)
static

Load a page revision from a given revision ID number.

Returns null if no such revision can be found.

Deprecated:
since 1.31 together with the class. Hard deprecated since 1.35

$flags include: Revision::READ_LATEST : Select the data from the master Revision::READ_LOCKING : Select & lock the data from the master

Parameters
int$id
int$flags(optional)
Returns
Revision|null

Definition at line 121 of file Revision.php.

References getRevisionLookup(), and wfDeprecated().

◆ newFromPageId()

static Revision::newFromPageId (   $pageId,
  $revId = 0,
  $flags = 0 
)
static

Load either the current, or a specified, revision that's attached to a given page ID.

Returns null if no such revision can be found.

$flags include: Revision::READ_LATEST : Select the data from the master (since 1.20) Revision::READ_LOCKING : Select & lock the data from the master

Deprecated:
since 1.31 together with the class. Hard deprecated since 1.35
Parameters
int$pageId
int$revId(optional)
int$flagsBitfield (optional)
Returns
Revision|null

Definition at line 165 of file Revision.php.

References getRevisionLookup(), and wfDeprecated().

◆ newFromRow()

static Revision::newFromRow (   $row)
static
Since
1.19

MCR migration note: replaced by RevisionStore::newRevisionFromRow(). Note that newFromRow() also accepts arrays, while newRevisionFromRow() does not. Instead, a MutableRevisionRecord should be constructed directly. RevisionStore::newMutableRevisionFromArray() can be used as a temporary replacement, but should be avoided.

Deprecated:
since 1.31 together with the Revision class. Hard deprecated since 1.35
Parameters
object | array$row
Returns
Revision

Definition at line 237 of file Revision.php.

References getRevisionFactory(), and wfDeprecated().

◆ newFromTitle()

static Revision::newFromTitle ( LinkTarget  $linkTarget,
  $id = 0,
  $flags = 0 
)
static

Load either the current, or a specified, revision that's attached to a given link target.

If not attached to that link target, will return null.

Deprecated:
since 1.31 together with the class. Hard deprecated since 1.35

$flags include: Revision::READ_LATEST : Select the data from the master Revision::READ_LOCKING : Select & lock the data from the master

Parameters
LinkTarget$linkTarget
int$id(optional)
int$flagsBitfield (optional)
Returns
Revision|null

Definition at line 143 of file Revision.php.

References getRevisionLookup(), and wfDeprecated().

Referenced by Title\countRevisionsBetween(), and Title\getAuthorsBetween().

◆ newKnownCurrent()

static Revision::newKnownCurrent ( IDatabase  $db,
  $pageIdOrTitle,
  $revId = 0 
)
static

Load a revision based on a known page ID and current revision ID from the DB.

This method allows for the use of caching, though accessing anything that normally requires permission checks (aside from the text) will trigger a small DB lookup. The title will also be loaded if $pageIdOrTitle is an integer ID.

Parameters
IDatabase$dbignored!
int | Title$pageIdOrTitlePage ID or Title object
int$revIdKnown current revision of this page. Determined automatically if not given.
Returns
Revision|bool Returns false if missing
Since
1.28
Deprecated:
since 1.31 and hard deprecated since 1.35

Definition at line 1223 of file Revision.php.

References $title, getRevisionLookup(), and wfDeprecated().

◆ newNullRevision()

static Revision::newNullRevision (   $dbw,
  $pageId,
  $summary,
  $minor,
  $user = null 
)
static

Create a new null-revision for insertion into a page's history.

This will not re-save the text, but simply refer to the text from the previous version.

Such revisions can for instance identify page rename operations and other such meta-modifications.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
IDatabase$dbw
int$pageIdID number of the page to read from
string$summaryRevision's summary
bool$minorWhether the revision should be considered as minor
User | null$userUser object to use or null for $wgUser
Returns
Revision|null Revision or null on error

Definition at line 1074 of file Revision.php.

References $title, getRevisionStore(), and wfDeprecated().

◆ setId()

Revision::setId (   $id)

Set the revision ID.

This should only be used for proposed revisions that turn out to be null edits.

Note
Only supported on Revisions that were constructed based on associative arrays, since they are mutable.
Deprecated:
since 1.31 (soft), 1.35 (hard)
Since
1.19
Parameters
int | string$id
Exceptions
MWException

Definition at line 478 of file Revision.php.

References wfDeprecated().

◆ setTitle()

Revision::setTitle (   $title)

Set the title of the revision.

Deprecated:
since 1.31, this is now a noop. Pass the Title to the constructor instead. hard deprecated since 1.35
Parameters
Title$title

Definition at line 612 of file Revision.php.

References $title, and wfDeprecated().

◆ setUserIdAndName()

Revision::setUserIdAndName (   $id,
  $name 
)

Set the user ID/name.

This should only be used for proposed revisions that turn out to be null edits

Note
Only supported on Revisions that were constructed based on associative arrays, since they are mutable.
Since
1.28
Deprecated:
since 1.31 (soft), 1.35 (hard), please reuse old Revision object
Parameters
int$idUser ID
string$nameUser name
Exceptions
MWException

Definition at line 501 of file Revision.php.

References User\newFromAnyId(), and wfDeprecated().

◆ userCan()

Revision::userCan (   $field,
User  $user = null 
)

Determine if the current user is allowed to view a particular field of this revision, if it's marked as deleted.

Deprecated:
since 1.31 (soft), 1.35 (hard)
Parameters
int$fieldOne of self::DELETED_TEXT, self::DELETED_COMMENT, self::DELETED_USER
User | null$userUser object to check, or null to use $wgUser (deprecated since 1.35)
Returns
bool

Definition at line 1106 of file Revision.php.

References wfDeprecated().

◆ userCanBitfield()

static Revision::userCanBitfield (   $bitfield,
  $field,
User  $user = null,
Title  $title = null 
)
static

Determine if the current user is allowed to view a particular field of this revision, if it's marked as deleted.

This is used by various classes to avoid duplication.

Parameters
int$bitfieldCurrent field
int$fieldOne of self::DELETED_TEXT = File::DELETED_FILE, self::DELETED_COMMENT = File::DELETED_COMMENT, self::DELETED_USER = File::DELETED_USER
User | null$userUser object to check, or null to use $wgUser
Title | null$titleA Title object to check for per-page restrictions on, instead of just plain userrights
Returns
bool

Definition at line 1129 of file Revision.php.

References $title, and wfDeprecated().

◆ userWasLastToEdit()

static Revision::userWasLastToEdit (   $db,
  $pageId,
  $userId,
  $since 
)
static

Check if no edits were made by other users since the time a user started editing the page.

Limit to 50 revisions for the sake of performance.

Since
1.20
Deprecated:
since 1.24 (soft), 1.35 (hard)
Parameters
IDatabase | int$dbThe Database to perform the check on. May be given as a Database object or a database identifier usable with wfGetDB.
int$pageIdThe ID of the page in question
int$userIdThe ID of the user in question
string$sinceLook at edits since this time
Returns
bool True if the given user was the only one to edit since the given timestamp

Definition at line 1200 of file Revision.php.

References getRevisionStore(), wfDeprecated(), and wfGetDB().

Member Data Documentation

◆ $mRecord

RevisionRecord Revision::$mRecord
private

Definition at line 43 of file Revision.php.

Referenced by getRevisionRecord().

◆ DELETED_COMMENT

const Revision::DELETED_COMMENT = RevisionRecord::DELETED_COMMENT

Definition at line 47 of file Revision.php.

◆ DELETED_RESTRICTED

const Revision::DELETED_RESTRICTED = RevisionRecord::DELETED_RESTRICTED

Definition at line 49 of file Revision.php.

◆ DELETED_TEXT

const Revision::DELETED_TEXT = RevisionRecord::DELETED_TEXT

Definition at line 46 of file Revision.php.

◆ DELETED_USER

const Revision::DELETED_USER = RevisionRecord::DELETED_USER

Definition at line 48 of file Revision.php.

◆ FOR_PUBLIC

const Revision::FOR_PUBLIC = RevisionRecord::FOR_PUBLIC

Definition at line 54 of file Revision.php.

◆ FOR_THIS_USER

const Revision::FOR_THIS_USER = RevisionRecord::FOR_THIS_USER

Definition at line 55 of file Revision.php.

◆ RAW

const Revision::RAW = RevisionRecord::RAW

Definition at line 56 of file Revision.php.

◆ SUPPRESSED_ALL

const Revision::SUPPRESSED_ALL = RevisionRecord::SUPPRESSED_ALL

Definition at line 51 of file Revision.php.

◆ SUPPRESSED_USER

const Revision::SUPPRESSED_USER = RevisionRecord::SUPPRESSED_USER

Definition at line 50 of file Revision.php.

◆ TEXT_CACHE_GROUP

const Revision::TEXT_CACHE_GROUP = SqlBlobStore::TEXT_CACHE_GROUP

Definition at line 58 of file Revision.php.


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