You are here

class FeedsTermElement in Feeds 7.2

Same name and namespace in other branches
  1. 6 plugins/FeedsParser.inc \FeedsTermElement
  2. 7 plugins/FeedsParser.inc \FeedsTermElement

Encapsulates a taxonomy style term object.

Objects of this class can be turned into a taxonomy term style arrays by casting them.

$term_object = new FeedsTermElement($term_array);
$term_array = (array) $term_object;

Hierarchy

Expanded class hierarchy of FeedsTermElement

File

plugins/FeedsParser.inc, line 252
Contains FeedsParser and related classes.

View source
class FeedsTermElement extends FeedsElement {
  public $tid, $vid, $name;

  /**
   * @param $term
   *   An array or a stdClass object that is a Drupal taxonomy term.
   */
  public function __construct($term) {
    if (is_array($term)) {
      parent::__construct($term['name']);
      foreach ($this as $key => $value) {
        $this->{$key} = isset($term[$key]) ? $term[$key] : NULL;
      }
    }
    elseif (is_object($term)) {
      parent::__construct($term->name);
      foreach ($this as $key => $value) {
        $this->{$key} = isset($term->{$key}) ? $term->{$key} : NULL;
      }
    }
  }

  /**
   * Use $name as $value.
   */
  public function getValue() {
    return $this->name;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FeedsElement::$value protected property The standard value of this element. This value can contain be a simple type, a FeedsElement or an array of either.
FeedsElement::__toString public function Magic method __toString() for printing and string conversion of this object.
FeedsTermElement::$tid public property
FeedsTermElement::getValue public function Use $name as $value. Overrides FeedsElement::getValue
FeedsTermElement::__construct public function Overrides FeedsElement::__construct 1