You are here

public function AbstractFeed::setOriginalSourceUri in Zircon Profile 8

Same name in this branch
  1. 8 vendor/zendframework/zend-feed/src/Reader/AbstractFeed.php \Zend\Feed\Reader\AbstractFeed::setOriginalSourceUri()
  2. 8 vendor/zendframework/zend-feed/src/Reader/Feed/AbstractFeed.php \Zend\Feed\Reader\Feed\AbstractFeed::setOriginalSourceUri()
Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/Reader/Feed/AbstractFeed.php \Zend\Feed\Reader\Feed\AbstractFeed::setOriginalSourceUri()

Set an original source URI for the feed being parsed. This value is returned from getFeedLink() method if the feed does not carry a self-referencing URI.

Parameters

string $uri:

File

vendor/zendframework/zend-feed/src/Reader/Feed/AbstractFeed.php, line 99

Class

AbstractFeed

Namespace

Zend\Feed\Reader\Feed

Code

public function setOriginalSourceUri($uri) {
  $this->originalSourceUri = $uri;
}