public function Entry::getGeoPoints in Feeds 8.3
Get the entry points.
Return value
array The geo entry points.
1 call to Entry::getGeoPoints()
- Entry::getGeoPoint in src/
Zend/ Extension/ Georss/ Entry.php - Returns the entry point.
File
- src/
Zend/ Extension/ Georss/ Entry.php, line 32
Class
- Entry
- Parses GeoRss data.
Namespace
Drupal\feeds\Zend\Extension\GeorssCode
public function getGeoPoints() {
if (!isset($this->data['georss'])) {
$this
->populateData();
}
return $this->data['georss'];
}