MediaWiki 1.41.2
HashSiteStore Class Reference

In-memory SiteStore implementation, stored in an associative array. More...

Inherits SiteStore.

Collaboration diagram for HashSiteStore:

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.
 

Detailed Description

In-memory SiteStore implementation, stored in an associative array.

Since
1.25
Author
Daniel Kinzler
Katie Filbert < aude..nosp@m.wiki.nosp@m.@gmai.nosp@m.l.co.nosp@m.m >

Definition at line 29 of file HashSiteStore.php.

Constructor & Destructor Documentation

◆ __construct()

HashSiteStore::__construct ( array $sites = [])
Parameters
Site[]$sites

Definition at line 36 of file HashSiteStore.php.

References saveSites().

Member Function Documentation

◆ clear()

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.

Returns
bool

Implements SiteStore.

Definition at line 104 of file HashSiteStore.php.

◆ getSite()

HashSiteStore::getSite ( $globalId,
$source = 'cache' )

Return the site with provided global ID, or null if there is no such site.

Since
1.25
Parameters
string$globalId
string$sourceeither 'cache' or 'recache'. If 'cache', the values can (but not obliged) come from a cache.
Returns
Site|null

Definition at line 77 of file HashSiteStore.php.

◆ getSites()

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.

Since
1.25
Parameters
string$sourceeither 'cache' or 'recache'. If 'cache', the values can (but not obliged) come from a cache.
Returns
SiteList

Definition at line 92 of file HashSiteStore.php.

◆ saveSite()

HashSiteStore::saveSite ( Site $site)

Save the provided site.

Since
1.25
Parameters
Site$site
Returns
bool Success indicator

Implements SiteStore.

Definition at line 47 of file HashSiteStore.php.

References Site\getGlobalId().

Referenced by saveSites().

◆ saveSites()

HashSiteStore::saveSites ( array $sites)

Save the provided sites.

Since
1.25
Parameters
Site[]$sites
Returns
bool Success indicator

Implements SiteStore.

Definition at line 60 of file HashSiteStore.php.

References saveSite().

Referenced by __construct().


The documentation for this class was generated from the following file: