params = $params; } /** * Fetch data from given external store URL * * @param string $url An external store URL * @return string|bool The text stored or false on error * @throws MWException */ abstract public function fetchFromURL( $url ); /** * Insert a data item into a given location * * @param string $location the location name * @param string $data the data item * @return string|bool The URL of the stored data item, or false on error * @throws MWException */ abstract public function store( $location, $data ); }