Abstract_Currency::get_currency_code()
Source
File: src/Tribe/Values/Abstract_Currency.php
public function get_currency_code() {
/**
* Filter the value returned for get_currency_code() when implemented in a specific class type
*
* @since 4.14.9
*
* @param string $currency_code the string representation of the value
* @param Abstract_Currency the object instance
*
* @return string
*/
$currency_code = apply_filters( "tec_common_value_{$this->get_value_type()}_get_currency_code", $this->currency_code, $this );
/**
* Filter the value returned for get_currency_code() when implemented in any class
*
* @since 4.14.9
*
* @param string $currency_code the string representation of the value
* @param Abstract_Currency the object instance
*
* @return string
*/
return apply_filters( 'tec_common_value_get_currency_code', $currency_code, $this );
}