You are here

class FeedsGeoTermElement in Feeds 7

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

A geo term element.

Hierarchy

Expanded class hierarchy of FeedsGeoTermElement

File

plugins/FeedsParser.inc, line 179

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