feat: fix opecart module status, remove .vite

This commit is contained in:
2025-12-21 23:04:16 +03:00
parent bf32d90811
commit e729484fd7
2 changed files with 15 additions and 4 deletions

View File

@@ -4,23 +4,33 @@ namespace Bastion\Services;
use Openguru\OpenCartFramework\Cache\CacheInterface;
use Openguru\OpenCartFramework\OpenCart\Decorators\OcRegistryDecorator;
use Openguru\OpenCartFramework\QueryBuilder\Connections\ConnectionInterface;
use Openguru\OpenCartFramework\Support\Arr;
class SettingsService
{
private OcRegistryDecorator $registry;
private CacheInterface $cache;
private ConnectionInterface $connection;
public function __construct(OcRegistryDecorator $registry, CacheInterface $cache)
public function __construct(OcRegistryDecorator $registry, CacheInterface $cache, ConnectionInterface $connection)
{
$this->registry = $registry;
$this->cache = $cache;
$this->connection = $connection;
}
public function update(array $data): void
{
$this->registry->model_setting_setting->editSetting('module_telecart', [
'module_telecart_settings' => $data,
]);
$this->connection->transaction(function () use ($data) {
$this->registry->model_setting_setting->editSetting('module_telecart', [
'module_telecart_settings' => $data,
]);
$this->registry->model_setting_setting->editSetting('module_tgshop', [
'module_tgshop_status' => Arr::get($data, 'app.app_enabled', false) ? 1 : 0,
]);
});
$this->cache->clear();
}