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-paypal.php
<?php
namespace App\KommaApp\Icepay\Api;

/**
* ICEPAY Library for PHP
* (c) 2011 ICEPAY
*
* This file contains the ICEPAY Library for PHP.
*
* @author ICEPAY.eu (support@icepay.eu)
* @version 1.0
*/
class ICEPAY_PayPal extends ICEPAY
{
	public function Pay( $country = NULL, $currency = NULL, $amount = NULL, $description = NULL )
	{
		$this->assignIssuer		= "DEFAULT";
		$this->country			= $country;
		$this->assignLanguage	= "EN";
		$this->assignCurrency	( $currency );
		$this->assignAmount		( $amount );
		$this->description		= $description;
		$this->paymentMethod	= "PAYPAL";

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

?>