You are here

public function Entry::getCommentFeedLinks in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

Entry

Namespace

Zend\Feed\Writer

Code

public function getCommentFeedLinks() {
  if (!array_key_exists('commentFeedLinks', $this->data)) {
    return;
  }
  return $this->data['commentFeedLinks'];
}