Merge "(bug 37182) Removed hard coded parentheses in SpecialStatistics.php"
[mediawiki.git] / includes / ExternalStoreHttp.php
blob311e32b38c53a08edd99a57599d60eeb759e3dc3
1 <?php
2 /**
3 * External storage using HTTP requests.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
23 /**
24 * Example class for HTTP accessable external objects.
25 * Only supports reading, not storing.
27 * @ingroup ExternalStorage
29 class ExternalStoreHttp {
31 /**
32 * Fetch data from given URL
34 * @param $url String: the URL
35 * @return String: the content at $url
37 function fetchFromURL( $url ) {
38 $ret = Http::get( $url );
39 return $ret;
42 /* XXX: may require other methods, for store, delete,
43 * whatever, for initial ext storage