MediaWiki  REL1_21
SiteStore.php
Go to the documentation of this file.
00001 <?php
00002 
00029 interface SiteStore {
00030 
00040         public function saveSite( Site $site );
00041 
00051         public function saveSites( array $sites );
00052 
00064         public function getSite( $globalId, $source = 'cache' );
00065 
00078         public function getSites( $source = 'cache' );
00079 
00084         public function clear();
00085 }