oer_GEOLOCATOR_API) { list($url, $lon, $lat) = explode(" ", Config::get()->oer_GEOLOCATOR_API); $output = json_decode(file_get_contents(sprintf($url, $_SERVER['REMOTE_ADDR'])), true); if (isset($output[$lon])) { $counter['longitude'] = $output[$lon]; } if (isset($output[$lat])) { $counter['latitude'] = $output[$lat]; } } $counter->store(); return $counter; } }