Chris@0: |null Chris@0: */ Chris@0: public function getAuthor($index = 0); Chris@0: Chris@0: /** Chris@0: * Get an array with feed authors Chris@0: * Chris@0: * @return array Chris@0: */ Chris@0: public function getAuthors(); Chris@0: Chris@0: /** Chris@0: * Get the entry content Chris@0: * Chris@0: * @return string Chris@0: */ Chris@0: public function getContent(); Chris@0: Chris@0: /** Chris@0: * Get the entry creation date Chris@0: * Chris@0: * @return \DateTime Chris@0: */ Chris@0: public function getDateCreated(); Chris@0: Chris@0: /** Chris@0: * Get the entry modification date Chris@0: * Chris@0: * @return \DateTime Chris@0: */ Chris@0: public function getDateModified(); Chris@0: Chris@0: /** Chris@0: * Get the entry description Chris@0: * Chris@0: * @return string Chris@0: */ Chris@0: public function getDescription(); Chris@0: Chris@0: /** Chris@0: * Get the entry enclosure Chris@0: * Chris@0: * @return \stdClass Chris@0: */ Chris@0: public function getEnclosure(); Chris@0: Chris@0: /** Chris@0: * Get the entry ID Chris@0: * Chris@0: * @return string Chris@0: */ Chris@0: public function getId(); Chris@0: Chris@0: /** Chris@0: * Get a specific link Chris@0: * Chris@0: * @param int $index Chris@0: * @return string Chris@0: */ Chris@0: public function getLink($index = 0); Chris@0: Chris@0: /** Chris@0: * Get all links Chris@0: * Chris@0: * @return array Chris@0: */ Chris@0: public function getLinks(); Chris@0: Chris@0: /** Chris@0: * Get a permalink to the entry Chris@0: * Chris@0: * @return string Chris@0: */ Chris@0: public function getPermalink(); Chris@0: Chris@0: /** Chris@0: * Get the entry title Chris@0: * Chris@0: * @return string Chris@0: */ Chris@0: public function getTitle(); Chris@0: Chris@0: /** Chris@0: * Get the number of comments/replies for current entry Chris@0: * Chris@0: * @return int Chris@0: */ Chris@0: public function getCommentCount(); Chris@0: Chris@0: /** Chris@0: * Returns a URI pointing to the HTML page where comments can be made on this entry Chris@0: * Chris@0: * @return string Chris@0: */ Chris@0: public function getCommentLink(); Chris@0: Chris@0: /** Chris@0: * Returns a URI pointing to a feed of all comments for this entry Chris@0: * Chris@0: * @return string Chris@0: */ Chris@0: public function getCommentFeedLink(); Chris@0: Chris@0: /** Chris@0: * Get all categories Chris@0: * Chris@0: * @return Category Chris@0: */ Chris@0: public function getCategories(); Chris@0: }