PHP code example of studiobonito / silverstripe-omnipayable
1. Go to this page and download the library: Download studiobonito/silverstripe-omnipayable 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/ */
studiobonito / silverstripe-omnipayable example snippets
$form = OmnipayableForm::create($this, 'PaymentForm');
$form = new OmnipayableForm_GoCardless($this, 'PaymentForm');
$form->setAmount('10.00');
class Page_Controller extends ContentController
{
public static $allowed_actions = array(
'PaymentForm'
);
public function PaymentForm()
{
$form = OmnipayableForm::create($this, 'PaymentForm');
$form->setAmount('10.00');
return $form;
}
}