Mercurial > hg > isophonics-drupal-site
view vendor/zendframework/zend-feed/src/Reader/ReaderImportInterface.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ namespace Zend\Feed\Reader; interface ReaderImportInterface { /** * Import a feed by providing a URI * * @param string $uri The URI to the feed * @param string $etag OPTIONAL Last received ETag for this resource * @param string $lastModified OPTIONAL Last-Modified value for this resource * @return Feed\FeedInterface * @throws Exception\RuntimeException */ public static function import($uri, $etag = null, $lastModified = null); /** * Import a feed from a remote URI * * Performs similarly to import(), except it uses the HTTP client passed to * the method, and does not take into account cached data. * * Primary purpose is to make it possible to use the Reader with alternate * HTTP client implementations. * * @param string $uri * @param Http\ClientInterface $client * @return self * @throws Exception\RuntimeException if response is not an Http\ResponseInterface */ public static function importRemoteFeed($uri, Http\ClientInterface $client); /** * Import a feed from a string * * @param string $string * @return Feed\FeedInterface * @throws Exception\InvalidArgumentException * @throws Exception\RuntimeException */ public static function importString($string); /** * Imports a feed from a file located at $filename. * * @param string $filename * @throws Exception\RuntimeException * @return Feed\FeedInterface */ public static function importFile($filename); }