MediaWiki REL1_33
ExternalStoreFactory.php
Go to the documentation of this file.
1<?php
10
15
19 public function __construct( array $externalStores ) {
20 $this->externalStores = array_map( 'strtolower', $externalStores );
21 }
22
30 public function getStoreObject( $proto, array $params = [] ) {
31 if ( !$this->externalStores || !in_array( strtolower( $proto ), $this->externalStores ) ) {
32 // Protocol not enabled
33 return false;
34 }
35
36 $class = 'ExternalStore' . ucfirst( $proto );
37
38 // Any custom modules should be added to $wgAutoLoadClasses for on-demand loading
39 return class_exists( $class ) ? new $class( $params ) : false;
40 }
41
42}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
__construct(array $externalStores)
getStoreObject( $proto, array $params=[])
Get an external store object of the given type, with the given parameters.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
$params