MediaWiki REL1_39
HashSiteStore.php
Go to the documentation of this file.
1<?php
32class HashSiteStore implements SiteStore {
33
37 private $sites = [];
38
42 public function __construct( $sites = [] ) {
43 $this->saveSites( $sites );
44 }
45
55 public function saveSite( Site $site ) {
56 $this->sites[$site->getGlobalId()] = $site;
57
58 return true;
59 }
60
70 public function saveSites( array $sites ) {
71 foreach ( $sites as $site ) {
72 $this->saveSite( $site );
73 }
74
75 return true;
76 }
77
89 public function getSite( $globalId, $source = 'cache' ) {
90 return $this->sites[$globalId] ?? null;
91 }
92
105 public function getSites( $source = 'cache' ) {
106 return new SiteList( $this->sites );
107 }
108
114 public function clear() {
115 $this->sites = [];
116
117 return true;
118 }
119
120}
In-memory SiteStore implementation, storing sites in an associative array.
saveSite(Site $site)
Saves the provided site.
getSite( $globalId, $source='cache')
Returns the site with provided global id, or null if there is no such site.
__construct( $sites=[])
saveSites(array $sites)
Saves the provided sites.
clear()
Deletes all sites from the database.
getSites( $source='cache')
Returns a list of all sites.
Definition Site.php:33
getGlobalId()
Returns the global site identifier (ie enwiktionary).
Definition Site.php:144
$source