You are here

public function Atom::getCommentFeedLink in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/Atom.php \Zend\Feed\Reader\Entry\Atom::getCommentFeedLink()

Returns a URI pointing to a feed of all comments for this entry

Return value

string

Overrides EntryInterface::getCommentFeedLink

File

vendor/zendframework/zend-feed/src/Reader/Entry/Atom.php, line 304

Class

Atom

Namespace

Zend\Feed\Reader\Entry

Code

public function getCommentFeedLink() {
  if (array_key_exists('commentfeedlink', $this->data)) {
    return $this->data['commentfeedlink'];
  }
  $commentfeedlink = $this
    ->getExtension('Atom')
    ->getCommentFeedLink();
  $this->data['commentfeedlink'] = $commentfeedlink;
  return $this->data['commentfeedlink'];
}