Exemplo n.º 1
0
 /** 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);
 }
Exemplo n.º 2
0
 /** 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);
 }
Exemplo n.º 3
0
 /** Call the api using the parent class
  *
  * @return type
  */
 public function get()
 {
     $params = array('name' => $this->_name);
     return parent::get(self::METHOD, $params);
 }
Exemplo n.º 4
0
 /** 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);
 }
Exemplo n.º 5
0
 /** 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);
 }
Exemplo n.º 6
0
 /** 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);
 }