MediaWiki REL1_31
RevisionLookup.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Storage;
24
27use Title;
28
38
51 public function getRevisionById( $id, $flags = 0 );
52
65 public function getRevisionByTitle( LinkTarget $linkTarget, $revId = 0, $flags = 0 );
66
79 public function getRevisionByPageId( $pageId, $revId = 0, $flags = 0 );
80
91 public function getPreviousRevision( RevisionRecord $rev, Title $title = null );
92
103 public function getNextRevision( RevisionRecord $rev, Title $title = null );
104
118 public function getKnownCurrentRevision( Title $title, $revId );
119
120}
Page revision base class.
Represents a title within MediaWiki.
Definition Title.php:39
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1777
Interface for database access objects.
Service for looking up page revisions.
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, Title $title=null)
Get next revision for this title.
getRevisionById( $id, $flags=0)
Load a page revision from a given revision ID number.
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.
getPreviousRevision(RevisionRecord $rev, Title $title=null)
Get previous revision for this title.