Function Reference: geodir_custom_gmaps_current_subtab

Summary

This function has not been documented yet.

Source File

geodir_custom_gmaps_current_subtab() is located in geodir_custom_google_maps/geodir_custom_gmaps_functions.php [Line: 56]

Source Code

function geodir_custom_gmaps_current_subtab($default='') {
	$subtab = isset($_REQUEST['subtab']) ? $_REQUEST['subtab'] : '';
	
	if ($subtab=='' && $default!='') {
		$subtab = $default;
	}
	
	return $subtab;
}