You are here

class FeedsGeoTermElement in Feeds 8.2

A geo term element.

Hierarchy

Expanded class hierarchy of FeedsGeoTermElement

File

lib/Drupal/feeds/FeedsGeoTermElement.php, line 8

Namespace

Drupal\feeds
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
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