public static function getInstance() { if (!is_object(self::$instance)) { self::$instance = new self(); } return self::$instance; }
public static function getCurrencyObject() { if (!self::$currency) { require_once 'currency.php'; self::$currency = K2StoreCurrency::getInstance(); } return self::$currency; }