<?php /** * ICEPAY Library for PHP * * This file is a base class for all payment methods of ICEPAY. * However, creating an instance of this class will redirect you to a payment screen of ICEPAY * where you will be able to choose from different payment methods. * * @author ICEPAY <*****@*****.**> * @copyright Copyright (c) 2011, ICEPAY * @version 1.0.9 */ foreach (ICEPAY::GetCoreClasses() as $filename) { require_once $filename; } class ICEPAY { protected $version = "1.1.0"; protected $merchantID = 0; protected $secretCode = ""; protected $orderID = ""; protected $issuer = ""; protected $country = ""; protected $language = ""; protected $currency = ""; protected $amount = 0; protected $description = ""; protected $paymentMethod = ""; protected $reference = ""; protected $logging = false;