13 lines
420 B
PHP
13 lines
420 B
PHP
<?php
|
|
namespace admin\controls;
|
|
class ShopPaymentMethod
|
|
{
|
|
public static function view_list()
|
|
{
|
|
return \Tpl::view( 'shop-payment-method/view-list', [
|
|
'apilo_payment_types_list' => unserialize( \admin\factory\Integrations::apilo_settings( 'payment-types-list' ) ),
|
|
'sellasist_payment_types_list' => unserialize( \admin\factory\Integrations::sellasist_settings( 'payment_types_list' ) ),
|
|
] );
|
|
}
|
|
}
|