MediaWiki REL1_34
RevisionLookup.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Revision;
24
27use Title;
28
39
52 public function getRevisionById( $id, $flags = 0 );
53
66 public function getRevisionByTitle( LinkTarget $linkTarget, $revId = 0, $flags = 0 );
67
80 public function getRevisionByPageId( $pageId, $revId = 0, $flags = 0 );
81
93 public function getPreviousRevision( RevisionRecord $rev, $flags = 0 );
94
106 public function getNextRevision( RevisionRecord $rev, $flags = 0 );
107
118 public function getTimestampFromId( $id, $flags = 0 );
119
133 public function getKnownCurrentRevision( Title $title, $revId );
134
135}
136
141class_alias( RevisionLookup::class, 'MediaWiki\Storage\RevisionLookup' );
Page revision base class.
Represents a title within MediaWiki.
Definition Title.php:42
Interface for database access objects.
Service for looking up page revisions.
getRevisionByPageId( $pageId, $revId=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given page ID.
getKnownCurrentRevision(Title $title, $revId)
Load a revision based on a known page ID and current revision ID from the DB.
getRevisionByTitle(LinkTarget $linkTarget, $revId=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
getNextRevision(RevisionRecord $rev, $flags=0)
Get next revision for this title.
getRevisionById( $id, $flags=0)
Load a page revision from a given revision ID number.
getPreviousRevision(RevisionRecord $rev, $flags=0)
Get previous revision for this title.
getTimestampFromId( $id, $flags=0)
Get rev_timestamp from rev_id, without loading the rest of the row.