You are here

public function Feed::getCategories in Zircon Profile 8

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

Get all categories

Return value

Collection\Category

File

vendor/zendframework/zend-feed/src/Reader/Extension/Atom/Feed.php, line 411

Class

Feed

Namespace

Zend\Feed\Reader\Extension\Atom

Code

public function getCategories() {
  if (array_key_exists('categories', $this->data)) {
    return $this->data['categories'];
  }
  if ($this
    ->getType() == Reader\Reader::TYPE_ATOM_10) {
    $list = $this->xpath
      ->query($this
      ->getXpathPrefix() . '/atom:category');
  }
  else {

    /**
     * Since Atom 0.3 did not support categories, it would have used the
     * Dublin Core extension. However there is a small possibility Atom 0.3
     * may have been retrofittied to use Atom 1.0 instead.
     */
    $this->xpath
      ->registerNamespace('atom10', Reader\Reader::NAMESPACE_ATOM_10);
    $list = $this->xpath
      ->query($this
      ->getXpathPrefix() . '/atom10:category');
  }
  if ($list->length) {
    $categoryCollection = new Collection\Category();
    foreach ($list as $category) {
      $categoryCollection[] = [
        'term' => $category
          ->getAttribute('term'),
        'scheme' => $category
          ->getAttribute('scheme'),
        'label' => $category
          ->getAttribute('label'),
      ];
    }
  }
  else {
    return new Collection\Category();
  }
  $this->data['categories'] = $categoryCollection;
  return $this->data['categories'];
}