Integrations DI refactor, remove Sellasist/Baselinker, fix product-edit encoding (0.263)

- 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>
This commit is contained in:
2026-02-13 21:59:26 +01:00
parent 67705f1f56
commit d824ba3909
51 changed files with 1166 additions and 2663 deletions

View File

@@ -5,20 +5,6 @@ foreach ( $this -> apilo_order_status_list as $apilo_status )
$apilo_order_status_list[ $apilo_status['id'] ] = $apilo_status['name'];
}
// sellasist statuses
$sellasist_status_types_list = [];
foreach ( $this -> sellasist_order_status_list as $sellasist_status )
{
$sellasist_order_status_list[ $sellasist_status['id'] ] = $sellasist_status['name'];
}
// baselinker order_status_list
$baselinker_order_status_list = [];
foreach ( $this -> baselinker_order_status_list as $baselinker_status )
{
$baselinker_order_status_list[ $baselinker_status['id'] ] = $baselinker_status['name'];
}
$grid = new \grid( 'pp_shop_statuses' );
$grid -> gdb_opt = $gdb;
$grid -> debug = true;
@@ -42,14 +28,6 @@ $grid -> columns_view = [
'name' => 'Status Apilo',
'db' => 'apilo_status_id',
'replace' => [ 'array' => $apilo_order_status_list ],
], [
'name' => 'Status Sellasist',
'db' => 'sellasist_status_id',
'replace' => [ 'array' => $sellasist_order_status_list ],
], [
'name' => 'Status Baselinker',
'db' => 'baselinker_status_id',
'replace' => [ 'array' => $baselinker_order_status_list ],
], [
'name' => 'Edytuj',
'action' => [ 'type' => 'edit', 'url' => '/admin/shop_statuses/status_edit/id=[id]' ],