interface EntryInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/EntryInterface.php \Zend\Feed\Reader\Entry\EntryInterface
Hierarchy
- interface \Zend\Feed\Reader\Entry\EntryInterface
Expanded class hierarchy of EntryInterface
All classes that implement EntryInterface
File
- vendor/
zendframework/ zend-feed/ src/ Reader/ Entry/ EntryInterface.php, line 14
Namespace
Zend\Feed\Reader\EntryView source
interface EntryInterface {
/**
* Get the specified author
*
* @param int $index
* @return string|null
*/
public function getAuthor($index = 0);
/**
* Get an array with feed authors
*
* @return array
*/
public function getAuthors();
/**
* Get the entry content
*
* @return string
*/
public function getContent();
/**
* Get the entry creation date
*
* @return string
*/
public function getDateCreated();
/**
* Get the entry modification date
*
* @return string
*/
public function getDateModified();
/**
* Get the entry description
*
* @return string
*/
public function getDescription();
/**
* Get the entry enclosure
*
* @return \stdClass
*/
public function getEnclosure();
/**
* Get the entry ID
*
* @return string
*/
public function getId();
/**
* Get a specific link
*
* @param int $index
* @return string
*/
public function getLink($index = 0);
/**
* Get all links
*
* @return array
*/
public function getLinks();
/**
* Get a permalink to the entry
*
* @return string
*/
public function getPermalink();
/**
* Get the entry title
*
* @return string
*/
public function getTitle();
/**
* Get the number of comments/replies for current entry
*
* @return int
*/
public function getCommentCount();
/**
* Returns a URI pointing to the HTML page where comments can be made on this entry
*
* @return string
*/
public function getCommentLink();
/**
* Returns a URI pointing to a feed of all comments for this entry
*
* @return string
*/
public function getCommentFeedLink();
/**
* Get all categories
*
* @return Category
*/
public function getCategories();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntryInterface:: |
public | function | Get the specified author | 2 |
EntryInterface:: |
public | function | Get an array with feed authors | 2 |
EntryInterface:: |
public | function | Get all categories | 2 |
EntryInterface:: |
public | function | Get the number of comments/replies for current entry | 2 |
EntryInterface:: |
public | function | Returns a URI pointing to a feed of all comments for this entry | 2 |
EntryInterface:: |
public | function | Returns a URI pointing to the HTML page where comments can be made on this entry | 2 |
EntryInterface:: |
public | function | Get the entry content | 2 |
EntryInterface:: |
public | function | Get the entry creation date | 2 |
EntryInterface:: |
public | function | Get the entry modification date | 2 |
EntryInterface:: |
public | function | Get the entry description | 2 |
EntryInterface:: |
public | function | Get the entry enclosure | 2 |
EntryInterface:: |
public | function | Get the entry ID | 2 |
EntryInterface:: |
public | function | Get a specific link | 2 |
EntryInterface:: |
public | function | Get all links | 2 |
EntryInterface:: |
public | function | Get a permalink to the entry | 2 |
EntryInterface:: |
public | function | Get the entry title | 2 |