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-ddebit.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_DDebit extends ICEPAY
{
	public function Pay( $country = NULL, $language = NULL, $currency = NULL, $amount = NULL, $description = NULL )
	{
		$this->issuer		= "INCASSO";
		$this->assignCountry	( $country );
		$this->assignLanguage	( $language );
		$this->assignCurrency	( $currency );
		$this->assignAmount	( $amount );
		$this->description	= $description;
		$this->paymentMethod 	= 'DDEBIT';
		
		return $this->postRequest( $this->basicMode(), $this->prepareParameters() );
	}
}

?>