PHP code example of twohill / silverstripe-ewaypayments

1. Go to this page and download the library: Download twohill/silverstripe-ewaypayments library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

twohill / silverstripe-ewaypayments example snippets



//..
public function doConfirm($data, $form) {
	$this->redirect($this->Link('pay-order/submit'));
}

public function pay_order($request) {
	$member = $this->currentMember();
	$invoice = $member->UnpaidInvoice;
	
	$payment = $invoice->findOrMakePayment($member);
	
	return new EWayPaymentController($this, $request, $payment);
}

public function order_paid($request) {
	$invoice = $this->currentMember()->UnpaidInvoice;
	if ($invoice) {
		if ($invoice->PaymentID && $invoice->Payment()->Status == "Completed") {
			//@TODO some sort of payment processing
			$invoice->markPaid();

			return $this->redirect($this->Link('thanks'));
		}	
	}
	$this->redirect($this->Link());
	
}

public function order_cancelled($request) {
	if ($invoice = $this->currentMember()->UnpaidInvoice) {
		return $this->customise(array(
			"Title" => "Payment Unsuccessfull",
			"Content" => $this->UnsuccessfulPaymentContent,
			"Invoice" => $invoice,
			"Form" => $this->ConfirmationAndPaymentForm()
		));
	} else {
		$this->redirect($this->Link());
	}
}