You are here

public function AbstractEntry::getType in Zircon Profile 8

Same name in this branch
  1. 8 vendor/zendframework/zend-feed/src/Reader/AbstractEntry.php \Zend\Feed\Reader\AbstractEntry::getType()
  2. 8 vendor/zendframework/zend-feed/src/Reader/Extension/AbstractEntry.php \Zend\Feed\Reader\Extension\AbstractEntry::getType()
  3. 8 vendor/zendframework/zend-feed/src/Reader/Entry/AbstractEntry.php \Zend\Feed\Reader\Entry\AbstractEntry::getType()
Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/AbstractEntry.php \Zend\Feed\Reader\Entry\AbstractEntry::getType()

Get the entry type

Return value

string

9 calls to AbstractEntry::getType()
Rss::getAuthors in vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php
Get an array with feed authors
Rss::getCategories in vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php
Get all categories
Rss::getCommentLink in vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php
Returns a URI pointing to the HTML page where comments can be made on this entry
Rss::getDateModified in vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php
Get the entry's date of modification
Rss::getDescription in vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php
Get the entry description

... See full list

File

vendor/zendframework/zend-feed/src/Reader/Entry/AbstractEntry.php, line 137

Class

AbstractEntry

Namespace

Zend\Feed\Reader\Entry

Code

public function getType() {
  return $this->data['type'];
}