MediaWiki  REL1_20
ExternalStoreHttp.php
Go to the documentation of this file.
00001 <?php
00029 class ExternalStoreHttp {
00030 
00037         function fetchFromURL( $url ) {
00038                 $ret = Http::get( $url );
00039                 return $ret;
00040         }
00041 
00042         /* XXX: may require other methods, for store, delete,
00043          * whatever, for initial ext storage
00044          */
00045 }