public function Rss::setXpath in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php \Zend\Feed\Reader\Entry\Rss::setXpath()
Set the XPath query (incl. on all Extensions)
Parameters
DOMXPath $xpath:
Return value
void
Overrides AbstractEntry::setXpath
File
- vendor/
zendframework/ zend-feed/ src/ Reader/ Entry/ Rss.php, line 588
Class
Namespace
Zend\Feed\Reader\EntryCode
public function setXpath(DOMXPath $xpath) {
parent::setXpath($xpath);
foreach ($this->extensions as $extension) {
$extension
->setXpath($this->xpath);
}
}