2018-12-07 07:08:29 +00:00
|
|
|
<?php
|
|
|
|
|
return [
|
|
|
|
|
'cashondelivery' => [
|
|
|
|
|
'code' => 'cashondelivery',
|
|
|
|
|
'title' => 'Cash On Delivery',
|
2019-07-11 04:46:58 +00:00
|
|
|
'description' => 'shop::app.checkout.onepage.cash-desc',
|
2018-12-07 07:08:29 +00:00
|
|
|
'class' => 'Webkul\Payment\Payment\CashOnDelivery',
|
2019-09-03 07:06:57 +00:00
|
|
|
'active' => true,
|
2019-09-13 09:04:15 +00:00
|
|
|
'sort' => 1,
|
2019-09-13 10:24:05 +00:00
|
|
|
'default' => 'yes'
|
2018-12-07 07:08:29 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'moneytransfer' => [
|
|
|
|
|
'code' => 'moneytransfer',
|
2019-09-03 07:06:57 +00:00
|
|
|
'title' => 'Money Transfer',
|
2019-07-11 04:46:58 +00:00
|
|
|
'description' => 'shop::app.checkout.onepage.money-desc',
|
2018-12-07 07:08:29 +00:00
|
|
|
'class' => 'Webkul\Payment\Payment\MoneyTransfer',
|
2019-04-30 12:23:59 +00:00
|
|
|
'active' => true,
|
2019-09-13 09:04:15 +00:00
|
|
|
'sort' => 2,
|
2019-09-13 10:24:05 +00:00
|
|
|
'default' => 'no'
|
2018-12-07 07:08:29 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'paypal_standard' => [
|
|
|
|
|
'code' => 'paypal_standard',
|
|
|
|
|
'title' => 'Paypal Standard',
|
2019-07-11 04:46:58 +00:00
|
|
|
'description' => 'shop::app.checkout.onepage.paypal-desc',
|
2018-12-07 07:08:29 +00:00
|
|
|
'class' => 'Webkul\Paypal\Payment\Standard',
|
|
|
|
|
'sandbox' => true,
|
2019-09-03 07:06:57 +00:00
|
|
|
'active' => true,
|
2019-04-30 12:23:59 +00:00
|
|
|
'business_account' => 'test@webkul.com',
|
2019-09-13 09:04:15 +00:00
|
|
|
'sort' => 3,
|
|
|
|
|
'default' => 'no'
|
2018-12-07 07:08:29 +00:00
|
|
|
]
|
|
|
|
|
];
|