MediaWiki REL1_31
RevisionLookup.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Storage;
24
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}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
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
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:37
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.