MediaWiki  1.31.0
RevisionLookup.php
Go to the documentation of this file.
1 <?php
23 namespace MediaWiki\Storage;
24 
27 use Title;
28 
37 interface RevisionLookup extends IDBAccessObject {
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 }
MediaWiki\Storage\RevisionLookup\getKnownCurrentRevision
getKnownCurrentRevision(Title $title, $revId)
Load a revision based on a known page ID and current revision ID from the DB.
MediaWiki\Storage\RevisionLookup
Service for looking up page revisions.
Definition: RevisionLookup.php:37
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MediaWiki\Storage\RevisionLookup\getRevisionByTitle
getRevisionByTitle(LinkTarget $linkTarget, $revId=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
IDBAccessObject
Interface for database access objects.
Definition: IDBAccessObject.php:55
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
MediaWiki\Storage\RevisionLookup\getRevisionByPageId
getRevisionByPageId( $pageId, $revId=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given page ID.
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
MediaWiki\Storage\RevisionLookup\getPreviousRevision
getPreviousRevision(RevisionRecord $rev, Title $title=null)
Get previous revision for this title.
MediaWiki\Storage\RevisionRecord
Page revision base class.
Definition: RevisionRecord.php:44
MediaWiki\Storage
Definition: BlobAccessException.php:23
Title
Represents a title within MediaWiki.
Definition: Title.php:39
MediaWiki\Storage\RevisionLookup\getNextRevision
getNextRevision(RevisionRecord $rev, Title $title=null)
Get next revision for this title.
MediaWiki\Storage\RevisionLookup\getRevisionById
getRevisionById( $id, $flags=0)
Load a page revision from a given revision ID number.
$rev
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:1767
MediaWiki\Linker\LinkTarget
Definition: LinkTarget.php:26