- New: Domain\Integrations\IntegrationsRepository + admin\Controllers\IntegrationsController (DI) - Cleanup: removed all Sellasist and Baselinker integrations from entire project - Fix: product-edit.php Polish characters (UTF-8/CP1250 double-encoding) - Update: factory\Integrations as facade (Apilo + ShopPRO only) - Tests: 212 tests, 577 assertions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
292 B
PHP
12 lines
292 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' ) ),
|
|
] );
|
|
}
|
|
}
|