You are here

CurrencyExchangerBartFeenstraCurrency.inc in Currency 7.2

Contains class CurrencyExchangerBartFeenstraCurrency.

File

currency/includes/CurrencyExchangerBartFeenstraCurrency.inc
View source
<?php

/**
 * @file
 * Contains class CurrencyExchangerBartFeenstraCurrency.
 */

/**
 * Provides fixed exchange rates as provided by bartfeenstra/currency.
 */
class CurrencyExchangerBartFeenstraCurrency implements CurrencyExchangerInterface {

  /**
   * Implements CurrencyExchangerInterface::load().
   */
  static function load($currency_code_from, $currency_code_to) {
    if (in_array($currency_code_from, BartFeenstra\Currency\Currency::resourceListAll()) && in_array($currency_code_to, BartFeenstra\Currency\Currency::resourceListAll())) {

      // Check if the requested rate is available.
      $currency_from = new Currency();
      $currency_from
        ->resourceLoad($currency_code_from);
      if ($currency_from && isset($currency_from->exchangeRates[$currency_code_to])) {
        return $currency_from->exchangeRates[$currency_code_to];
      }

      // Conversion rates are two-way. If a reverse rate is unavailable, set it.
      $currency_to = new Currency();
      $currency_to
        ->resourceLoad($currency_code_to);
      if ($currency_to && isset($currency_to->exchangeRates[$currency_code_from])) {
        return currency_divide(1, $currency_to->exchangeRates[$currency_code_from]);
      }
    }

    // There is no available exchange rate.
    return FALSE;
  }

  /**
   * Implements CurrencyExchangerInterface::loadMultiple().
   */
  static function loadMultiple(array $currency_codes) {
    $rates = array();
    foreach ($currency_codes as $currency_code_from => $currency_codes_to) {
      foreach ($currency_codes_to as $currency_code_to) {
        $rates[$currency_code_from][$currency_code_to] = self::load($currency_code_from, $currency_code_to);
      }
    }
    return $rates;
  }

  /**
   * Implements CurrencyExchangerInterface::operationsLinks().
   */
  static function operationsLinks() {
  }

}

Classes

Namesort descending Description
CurrencyExchangerBartFeenstraCurrency Provides fixed exchange rates as provided by bartfeenstra/currency.