HEX
Server: Apache
System: Linux ecngx285.inmotionhosting.com 4.18.0-553.79.1.lve.el8.x86_64 #1 SMP Wed Oct 15 17:59:35 UTC 2025 x86_64
User: zeusxp5 (3862)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/zeusxp5/tour.kamille.us/wp-content/plugins/surecart/app/src/Models/DisplayCurrency.php
<?php

namespace SureCart\Models;

use SureCart\Support\Currency;

/**
 * DisplayCurrency model.
 */
class DisplayCurrency extends Model {
	/**
	 * Rest API endpoint
	 *
	 * @var string
	 */
	protected $endpoint = 'display_currencies';

	/**
	 * Object name
	 *
	 * @var string
	 */
	protected $object_name = 'display_currency';

	/**
	 * Is this cachable?
	 *
	 * @var boolean
	 */
	protected $cachable = true;

	/**
	 * Clear cache when products are updated.
	 *
	 * @var string
	 */
	protected $cache_key = 'display_currencies';

	/**
	 * Get the display example attribute
	 *
	 * @return string
	 */
	protected function getDisplayExampleAttribute() {
		return Currency::format( 123456, $this->currency );
	}

	/**
	 * Get the name of the currency.
	 *
	 * @return string
	 */
	protected function getNameAttribute() {
		return Currency::getName( $this->currency );
	}

	/**
	 * Get the currency symbol.
	 *
	 * @return string
	 */
	protected function getCurrencySymbolAttribute() {
		return html_entity_decode( Currency::getCurrencySymbol( $this->currency ) );
	}

	/**
	 * Is this the default store currency?
	 *
	 * @return boolean
	 */
	protected function getIsDefaultCurrencyAttribute() {
		return \SureCart::account()->currency === $this->currency;
	}

	/**
	 * Get the flag URL.
	 *
	 * @return string
	 */
	protected function getFlagAttribute() {
		return file_exists( dirname( SURECART_PLUGIN_FILE ) . '/images/flags/' . strtolower( $this->currency ) . '.svg' )
			? plugins_url( 'images/flags/' . strtolower( $this->currency ) . '.svg', SURECART_PLUGIN_FILE )
			: null;
	}
}