MediaWiki  1.23.15
IDBAccessObject.php
Go to the documentation of this file.
1 <?php
47 interface IDBAccessObject {
48  // Constants for object loading bitfield flags (higher => higher QoS)
49  const READ_LATEST = 1; // read from the master
50  const READ_LOCKING = 3; // READ_LATEST and "FOR UPDATE"
51 
52  // Convenience constant for callers to explicitly request slave data
53  const READ_NORMAL = 0; // read from the slave
54 
55  // Convenience constant for tracking how data was loaded (higher => higher QoS)
56  const READ_NONE = -1; // not loaded yet (or the object was cleared)
57 }
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
IDBAccessObject\READ_LATEST
const READ_LATEST
Definition: IDBAccessObject.php:49
IDBAccessObject
Interface for database access objects.
Definition: IDBAccessObject.php:47
IDBAccessObject\READ_LOCKING
const READ_LOCKING
Definition: IDBAccessObject.php:50
IDBAccessObject\READ_NORMAL
const READ_NORMAL
Definition: IDBAccessObject.php:53
IDBAccessObject\READ_NONE
const READ_NONE
Definition: IDBAccessObject.php:56