/** Get the data from the api using parent * @access public * @return type */ public function get() { $params = array('name' => $this->_names, 'featureType' => $this->_types); return parent::get(self::METHOD, $params); }
/** Get the data from the api * @access public */ public function get() { $params = array('featureType' => $this->_type, 'minx' => $this->_minx, 'miny' => $this->_miny, 'maxx' => $this->_maxx, 'maxy' => $this->_maxy, 'operator' => $this->_operator); return parent::get(self::METHOD, $params); }
/** Call the api using the parent class * * @return type */ public function get() { $params = array('name' => $this->_name); return parent::get(self::METHOD, $params); }
/** Send parameters to parent function * @access public * @return array */ public function get() { $params = array('postCode' => $this->_postCode, 'gazetteer' => $this->_gazetteer, 'format' => $this->_format); return parent::get(self::METHOD, $params); }
/** Get the data from edina * @access protected * @return array */ protected function _getDataFromEdina() { $params = array(); // No params to call in this, leave empty return parent::get(self::TYPES_EDINA, $params); }
/** Get the data from the api using parent class * @access public * @return array */ public function get() { $params = array('identifier' => $this->_footprints); return parent::get(self::METHOD, $params); }