File: D:/HostingSpaces/ZelfVerkopen/zelfverkopen.nl/app/KommaApp/Icepay/Api/icepay-phone.php
<?php
namespace App\KommaApp\Icepay\Api;
/**
* ICEPAY Library for PHP
* (c) 2009 ICEPAY
*
* This file contains the ICEPAY Library for PHP.
*
* @author ICEPAY.eu (support@icepay.eu)
* @version 1.0
*/
class ICEPAY_Phone extends ICEPAY
{
public function Pay( $country = NULL, $language = NULL, $currency = NULL, $amount = NULL, $description = NULL )
{
$this->issuer = 'PBAR';
$this->assignCountry ( $country );
$this->assignLanguage ( $language );
$this->assignCurrency ( $currency );
$this->assignAmount ( $amount );
$this->description = $description;
$this->paymentMethod = 'PBAR';
return $this->postRequest( $this->basicMode(), $this->prepareParameters() );
}
}
?>