You are here

public function AbstractFeed::getType in Zircon Profile 8

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

Get the feed type

Return value

string

16 calls to AbstractFeed::getType()
AbstractFeed::current in vendor/zendframework/zend-feed/src/Reader/Feed/AbstractFeed.php
Return the current entry
Atom::indexEntries in vendor/zendframework/zend-feed/src/Reader/Feed/Atom.php
Read all entries to the internal entries array
Rss::getAuthors in vendor/zendframework/zend-feed/src/Reader/Feed/Rss.php
Get an array with feed authors
Rss::getCategories in vendor/zendframework/zend-feed/src/Reader/Feed/Rss.php
Get all categories
Rss::getCopyright in vendor/zendframework/zend-feed/src/Reader/Feed/Rss.php
Get the copyright entry

... See full list

File

vendor/zendframework/zend-feed/src/Reader/Feed/AbstractFeed.php, line 203

Class

AbstractFeed

Namespace

Zend\Feed\Reader\Feed

Code

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