MediaWiki
REL1_20
|
Class to handle file lock manager registration. More...
Public Member Functions | |
get ($name) | |
Get the lock manager object with a given name. | |
getAny () | |
Get the default lock manager configured for the site or at least some other effective configured lock manager. | |
getDefault () | |
Get the default lock manager configured for the site. | |
Static Public Member Functions | |
static | destroySingleton () |
Destroy the singleton instance, so that a new one will be created next time singleton() is called. | |
static | singleton () |
Protected Member Functions | |
__construct () | |
initFromGlobals () | |
Register lock managers from the global variables. | |
register (array $configs) | |
Register an array of file lock manager configurations. | |
Protected Attributes | |
Array | $managers = array() |
of (name => ('class' =>, 'config' =>, 'instance' =>)) * | |
Static Protected Attributes | |
static | $instance = null |
Class to handle file lock manager registration.
Definition at line 31 of file LockManagerGroup.php.
LockManagerGroup::__construct | ( | ) | [protected] |
Definition at line 39 of file LockManagerGroup.php.
static LockManagerGroup::destroySingleton | ( | ) | [static] |
Destroy the singleton instance, so that a new one will be created next time singleton() is called.
Definition at line 56 of file LockManagerGroup.php.
Referenced by ForkController\prepareEnvironment().
LockManagerGroup::get | ( | $ | name | ) |
Get the lock manager object with a given name.
$name | string |
MWException |
Definition at line 104 of file LockManagerGroup.php.
Get the default lock manager configured for the site or at least some other effective configured lock manager.
Throws an exception if no lock manager could be found.
MWException |
Definition at line 137 of file LockManagerGroup.php.
Get the default lock manager configured for the site.
Returns NullLockManager if no lock manager could be found.
Definition at line 123 of file LockManagerGroup.php.
LockManagerGroup::initFromGlobals | ( | ) | [protected] |
Register lock managers from the global variables.
Definition at line 65 of file LockManagerGroup.php.
LockManagerGroup::register | ( | array $ | configs | ) | [protected] |
Register an array of file lock manager configurations.
$configs | Array |
MWException |
Definition at line 78 of file LockManagerGroup.php.
static LockManagerGroup::singleton | ( | ) | [static] |
Definition at line 44 of file LockManagerGroup.php.
LockManagerGroup::$instance = null [static, protected] |
Definition at line 35 of file LockManagerGroup.php.
Array LockManagerGroup::$managers = array() [protected] |
of (name => ('class' =>, 'config' =>, 'instance' =>)) *
Definition at line 37 of file LockManagerGroup.php.