MediaWiki  REL1_21
ExternalStoreHttp.php
Go to the documentation of this file.
00001 <?php
00029 class ExternalStoreHttp extends ExternalStoreMedium {
00033         public function fetchFromURL( $url ) {
00034                 return Http::get( $url );
00035         }
00036 
00040         public function store( $cluster, $data ) {
00041                 throw new MWException( "ExternalStoreHttp is read-only and does not support store()." );
00042         }
00043 }