You are here

class FeedsGeoTermElement in Feeds 7.2

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

A geo term element.

Hierarchy

Expanded class hierarchy of FeedsGeoTermElement

File

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

View source
class FeedsGeoTermElement extends FeedsTermElement {
  public $lat, $lon, $bound_top, $bound_right, $bound_bottom, $bound_left, $geometry;

  /**
   * @param $term
   *   An array or a stdClass object that is a Drupal taxonomy term. Can include
   *   geo extensions.
   */
  public function __construct($term) {
    parent::__construct($term);
  }

}

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.
FeedsGeoTermElement::$lat public property
FeedsGeoTermElement::__construct public function Overrides FeedsTermElement::__construct
FeedsTermElement::$tid public property
FeedsTermElement::getValue public function Use $name as $value. Overrides FeedsElement::getValue