HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/ZelfVerkopen/zelfverkopen.nl/app/KommaApp/Icepay/Api/icepay-ideal.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.5
*/
class ICEPAY_iDEAL extends ICEPAY
{
	public function Pay( $issuer = NULL, $amount = NULL, $description = NULL )
	{
		$this->assignIssuer		( $issuer );
		$this->country			= 'NL';
		$this->language			= 'NL';
		$this->currency			= 'EUR';
		$this->assignAmount		( $amount );
		$this->description		= $description;
		$this->paymentMethod 	= 'IDEAL';

		return $this->postRequest( $this->basicMode(), $this->prepareParameters() );
	}
}

?>