MediaWiki  REL1_21
ExternalStoreMedium.php
Go to the documentation of this file.
00001 <?php
00031 abstract class ExternalStoreMedium {
00033         protected $params = array();
00034 
00038         public function __construct( array $params = array() ) {
00039                 $this->params = $params;
00040         }
00041 
00049         abstract public function fetchFromURL( $url );
00050 
00059         abstract public function store( $location, $data );
00060 }