base_object = $base_object; $this->layout_object = $layout_object; } function run() { $geo_arr = split(',', $this->base_object->config->shopConfiguration['google_map_geo_coordinates']); $geo_data['geo_lat'] = trim($geo_arr[0]); $geo_data['geo_lon'] = trim($geo_arr[1]); $this->layout_object->assign('geo_data', $geo_data); return $this->layout_object->_fetch('content_google_map.tpl'); } }