MediaWiki
1.33.1
|
Example class for HTTP accessible external objects. More...
Public Member Functions | |
fetchFromURL ( $url) | |
Fetch data from given external store URL. More... | |
isReadOnly ( $location) | |
Check if a given location is read-only. More... | |
store ( $location, $data) | |
Insert a data item into a given location. More... | |
Public Member Functions inherited from ExternalStoreMedium | |
__construct (array $params=[]) | |
batchFetchFromURLs (array $urls) | |
Fetch data from given external store URLs. More... | |
Additional Inherited Members | |
Protected Attributes inherited from ExternalStoreMedium | |
array | $params = [] |
Example class for HTTP accessible external objects.
Only supports reading, not storing.
Definition at line 29 of file ExternalStoreHttp.php.
ExternalStoreHttp::fetchFromURL | ( | $url | ) |
Fetch data from given external store URL.
string | $url | An external store URL |
MWException |
Reimplemented from ExternalStoreMedium.
Definition at line 30 of file ExternalStoreHttp.php.
References Http\get().
ExternalStoreHttp::isReadOnly | ( | $location | ) |
Check if a given location is read-only.
string | $location | The location name |
Reimplemented from ExternalStoreMedium.
Definition at line 38 of file ExternalStoreHttp.php.
ExternalStoreHttp::store | ( | $location, | |
$data | |||
) |
Insert a data item into a given location.
string | $location | The location name |
string | $data | The data item |
MWException |
Reimplemented from ExternalStoreMedium.
Definition at line 34 of file ExternalStoreHttp.php.