Abstract_Currency::get_currency_symbol()


Source

File: src/Tribe/Values/Abstract_Currency.php

	public function get_currency_symbol() {

		/**
		 * Filter the value returned for get_currency_symbol() when implemented in a specific class type
		 *
		 * @since 4.14.9
		 *
		 * @param string $currency_symbol the string representation of the value
		 * @param Abstract_Currency the object instance
		 *
		 * @return string
		 */
		$currency_symbol = apply_filters( "tec_common_value_{$this->get_value_type()}_get_currency_symbol", $this->currency_symbol, $this );

		/**
		 * Filter the value returned for get_currency_symbol() when implemented in any class
		 *
		 * @since 4.14.9
		 *
		 * @param string $currency_symbol the string representation of the value
		 * @param Abstract_Currency the object instance
		 *
		 * @return string
		 */
		return apply_filters( 'tec_common_value_get_currency_symbol', $currency_symbol, $this );
	}