Skip to content

flame-org/PayPal-Component

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PayPal Component

##Usage

###Config

parameters:
	paypal:
		api:
			username = 'seberm_1332081338_biz_api1.gmail.com'
			password = '1332081363'
			signature = 'AWiH1IO0zFZrEQbbn0JwDZHbWukIAebmYjpOylRCqBGGgztea2bku.N4'
		sandbox = true

factories:
	paypalOrderButton:
		implement: Flame\Components\PayPal\Buttons\IOrderFactory
		setup:
			- setCredentials(%paypal.api%)
			- setSandBox(%paypal.sandbox%)

			# This option cause that you're not redirected back on your page for payment confirmation but you confirm payment directly on PayPal page
			#- setRedirectToConfirm(false)

###Presenter

/**
 * @var \Flame\Components\PayPal\Buttons\IOrderFactory $orderFactory
 */
private $orderFactory;

/**
 * @var \Flame\Components\PayPal\Buttons\Order
 */
private $orderButton;


/**
 * @param \Flame\Components\PayPal\Buttons\IOrderFactory $orderFactory
 */
public function injectOrderFactory(\Flame\Components\PayPal\Buttons\IOrderFactory $orderFactory)
{
	$this->orderFactory = $orderFactory;
}

public function startup()
{
	parent::startup();

	$this->orderButton = $this->orderFactory->create();
	$this->orderButton->setSessionSection($this->session->getSection('paypal'));
	$this->orderButton->onSuccessPayment[] = \Nette\Callback::create($this, 'processPayment');
}

/**
 * @return Flame\Components\PayPal\Buttons\Order
 */
protected function createComponentPaypalButton()
{

	$control = $this->orderButton;
	$control->setCurrencyCode(\Flame\PayPal\API\API::CURRENCY_EURO);
	$control->onConfirmation[] = \Nette\Callback::create($this, 'confirmOrder');
	$control->onError[] = \Nette\Callback::create($this, 'errorOccurred');

	//$tourModel is instance of PRODUCT
	$control->addItemToCart(
		$tourModel['name'], \Nette\Utils\Strings::substring($tourModel['desc'], 0, 25), $tourModel['price']
	);

	return $control;
}

About

PayPal API for Nette

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%