public function Feed::getSummary in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-feed/src/Reader/Extension/Podcast/Feed.php \Zend\Feed\Reader\Extension\Podcast\Feed::getSummary()
Get the entry summary
Return value
string
File
- vendor/
zendframework/ zend-feed/ src/ Reader/ Extension/ Podcast/ Feed.php, line 251
Class
Namespace
Zend\Feed\Reader\Extension\PodcastCode
public function getSummary() {
if (isset($this->data['summary'])) {
return $this->data['summary'];
}
$summary = $this->xpath
->evaluate('string(' . $this
->getXpathPrefix() . '/itunes:summary)');
if (!$summary) {
$summary = null;
}
$this->data['summary'] = $summary;
return $this->data['summary'];
}