needlogin=true; $me = new User(); $me->loadMe(); $this->me = $me; $this->layout()->set("me",$me); } protected function indexAction() { } protected function testAction() { $search = [ 'street' => "Kastellfeldgasse 20", 'zip' => "8010", 'city' => "Graz", 'country' => "AT" ]; $coords = Gmaps_Geocoding::getCoords($search); var_dump($coords); exit; } }