MediaWiki REL1_40
|
In-memory SiteStore implementation, stored in an associative array. More...
Inherits SiteStore.
Public Member Functions | |
__construct (array $sites=[]) | |
clear () | |
Delete all sites from the database. | |
getSite ( $globalId, $source='cache') | |
Return the site with provided global ID, or null if there is no such site. | |
getSites ( $source='cache') | |
Return a list of all sites. | |
saveSite (Site $site) | |
Save the provided site. | |
saveSites (array $sites) | |
Save the provided sites. | |
Public Member Functions inherited from SiteLookup | |
getSite ( $globalId) | |
Return the site with provided global ID, or null if there is no such site. | |
getSites () | |
Return a list of all sites. | |
In-memory SiteStore implementation, stored in an associative array.
Definition at line 29 of file HashSiteStore.php.
HashSiteStore::__construct | ( | array | $sites = [] | ) |
HashSiteStore::clear | ( | ) |
Delete all sites from the database.
After calling clear(), getSites() will return an empty list and getSite() will return null until saveSite() or saveSites() is called.
Implements SiteStore.
Definition at line 104 of file HashSiteStore.php.
HashSiteStore::getSite | ( | $globalId, | |
$source = 'cache' ) |
Return the site with provided global ID, or null if there is no such site.
string | $globalId | |
string | $source | either 'cache' or 'recache'. If 'cache', the values can (but not obliged) come from a cache. |
Definition at line 77 of file HashSiteStore.php.
HashSiteStore::getSites | ( | $source = 'cache' | ) |
Return a list of all sites.
By default this list is fetched from the cache, which can be changed to loading the list from the database using the $useCache parameter.
string | $source | either 'cache' or 'recache'. If 'cache', the values can (but not obliged) come from a cache. |
Definition at line 92 of file HashSiteStore.php.
HashSiteStore::saveSite | ( | Site | $site | ) |
Save the provided site.
Site | $site |
Implements SiteStore.
Definition at line 47 of file HashSiteStore.php.
References Site\getGlobalId().
Referenced by saveSites().
HashSiteStore::saveSites | ( | array | $sites | ) |
Save the provided sites.
Site[] | $sites |
Implements SiteStore.
Definition at line 60 of file HashSiteStore.php.
References saveSite().
Referenced by __construct().