MediaWiki  REL1_19
ExternalStoreHttp.php
Go to the documentation of this file.
00001 <?php
00002 
00009 class ExternalStoreHttp {
00010 
00017         function fetchFromURL( $url ) {
00018                 $ret = Http::get( $url );
00019                 return $ret;
00020         }
00021 
00022         /* XXX: may require other methods, for store, delete,
00023          * whatever, for initial ext storage
00024          */
00025 }