public function Entry::getCommentFeedLinks in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/Writer/Entry.php \Zend\Feed\Writer\Entry::getCommentFeedLinks()
Returns an array of URIs pointing to a feed of all comments for this entry where the array keys indicate the feed type (atom, rss or rdf).
Return value
string
File
- vendor/
zendframework/ zend-feed/ src/ Writer/ Entry.php, line 523
Class
Namespace
Zend\Feed\WriterCode
public function getCommentFeedLinks() {
if (!array_key_exists('commentFeedLinks', $this->data)) {
return;
}
return $this->data['commentFeedLinks'];
}