MediaWiki  1.23.8
ExternalStoreHttp.php
Go to the documentation of this file.
1 <?php
33  public function fetchFromURL( $url ) {
34  return Http::get( $url );
35  }
36 
40  public function store( $cluster, $data ) {
41  throw new MWException( "ExternalStoreHttp is read-only and does not support store()." );
42  }
43 }
ExternalStoreMedium
Accessable external objects in a particular storage medium.
Definition: ExternalStoreMedium.php:31
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
ExternalStoreHttp\store
store( $cluster, $data)
Definition: ExternalStoreHttp.php:40
MWException
MediaWiki exception.
Definition: MWException.php:26
ExternalStoreHttp\fetchFromURL
fetchFromURL( $url)
Definition: ExternalStoreHttp.php:33
Http\get
static get( $url, $timeout='default', $options=array())
Simple wrapper for Http::request( 'GET' )
Definition: HttpFunctions.php:93
ExternalStoreHttp
Example class for HTTP accessable external objects.
Definition: ExternalStoreHttp.php:29