You are here

interface EntryInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/EntryInterface.php \Zend\Feed\Reader\Entry\EntryInterface

Hierarchy

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\Entry
View 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

Namesort descending Modifiers Type Description Overrides
EntryInterface::getAuthor public function Get the specified author 2
EntryInterface::getAuthors public function Get an array with feed authors 2
EntryInterface::getCategories public function Get all categories 2
EntryInterface::getCommentCount public function Get the number of comments/replies for current entry 2
EntryInterface::getCommentFeedLink public function Returns a URI pointing to a feed of all comments for this entry 2
EntryInterface::getCommentLink public function Returns a URI pointing to the HTML page where comments can be made on this entry 2
EntryInterface::getContent public function Get the entry content 2
EntryInterface::getDateCreated public function Get the entry creation date 2
EntryInterface::getDateModified public function Get the entry modification date 2
EntryInterface::getDescription public function Get the entry description 2
EntryInterface::getEnclosure public function Get the entry enclosure 2
EntryInterface::getId public function Get the entry ID 2
EntryInterface::getLink public function Get a specific link 2
EntryInterface::getLinks public function Get all links 2
EntryInterface::getPermalink public function Get a permalink to the entry 2
EntryInterface::getTitle public function Get the entry title 2