|
MediaWiki master
|
External storage using HTTP requests. More...
Inherits MediaWiki\ExternalStore\ExternalStoreMedium.

Public Member Functions | |||||||||
| fetchFromURL ( $url) | |||||||||
Fetch data from given external store URL.
| |||||||||
| isReadOnly ( $location) | |||||||||
Check if a given location is read-only.
| |||||||||
| store ( $location, $data) | |||||||||
Insert a data item into a given location.
| |||||||||
Public Member Functions inherited from MediaWiki\ExternalStore\ExternalStoreMedium | |||||||||
| __construct (array $params) | |||||||||
| batchFetchFromURLs (array $urls) | |||||||||
| Fetch data from given external store URLs. | |||||||||
| setLogger (LoggerInterface $logger) | |||||||||
Additional Inherited Members | |
Protected Attributes inherited from MediaWiki\ExternalStore\ExternalStoreMedium | |
| string | $dbDomain |
| Default database domain to store content under. | |
| bool | $isDbDomainExplicit |
| Whether this was factoried with an explicit DB domain. | |
| LoggerInterface | $logger |
| array | $params = [] |
| Usage context options for this instance. | |
External storage using HTTP requests.
Example class for HTTP accessible external objects. Only supports reading, not storing.
Definition at line 21 of file ExternalStoreHttp.php.
| MediaWiki\ExternalStore\ExternalStoreHttp::fetchFromURL | ( | $url | ) |
Fetch data from given external store URL.
| string | $url | An external store URL |
| ExternalStoreException |
Reimplemented from MediaWiki\ExternalStore\ExternalStoreMedium.
Definition at line 23 of file ExternalStoreHttp.php.
References $url, and MediaWiki\MediaWikiServices\getInstance().
| MediaWiki\ExternalStore\ExternalStoreHttp::isReadOnly | ( | $location | ) |
Check if a given location is read-only.
| string | $location | The location name |
Reimplemented from MediaWiki\ExternalStore\ExternalStoreMedium.
Definition at line 35 of file ExternalStoreHttp.php.
| MediaWiki\ExternalStore\ExternalStoreHttp::store | ( | $location, | |
| $data ) |
Insert a data item into a given location.
| string | $location | The location name |
| string | $data | The data item |
| ExternalStoreException |
Reimplemented from MediaWiki\ExternalStore\ExternalStoreMedium.
Definition at line 29 of file ExternalStoreHttp.php.