Function Reference: geodir_get_currency_type

Summary

This function has not been documented yet.

Source Code

function geodir_get_currency_type() {
	$currency = get_option('geodir_currency');
	
	$currency = $currency ? stripslashes_deep($currency) : 'USD';
	
	return $currency;
}