7 * This source file is subject to the new BSD license that is bundled
8 * with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
16 * @package Zend_Feed_Reader
17 * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
18 * @license http://framework.zend.com/license/new-bsd New BSD License
19 * @version $Id: EntryInterface.php 16953 2009-07-22 11:57:25Z padraic $
24 * @package Zend_Feed_Reader
25 * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
26 * @license http://framework.zend.com/license/new-bsd New BSD License
28 interface Zend_Feed_Reader_EntryInterface
31 * Get the specified author
36 public function getAuthor($index = 0);
39 * Get an array with feed authors
43 public function getAuthors();
46 * Get the entry content
50 public function getContent();
53 * Get the entry creation date
57 public function getDateCreated();
60 * Get the entry modification date
64 public function getDateModified();
67 * Get the entry description
71 public function getDescription();
74 * Get the entry enclosure
78 public function getEnclosure();
85 public function getId();
93 public function getLink($index = 0);
100 public function getLinks();
103 * Get a permalink to the entry
107 public function getPermalink();
110 * Get the entry title
114 public function getTitle();
117 * Get the number of comments/replies for current entry
121 public function getCommentCount();
124 * Returns a URI pointing to the HTML page where comments can be made on this entry
128 public function getCommentLink();
131 * Returns a URI pointing to a feed of all comments for this entry
135 public function getCommentFeedLink();