Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
store.php
1<?php
2
4
7
8class Store implements Preset
9{
10 public function enable()
11 {
12 Option::set('catalog', 'preset_store_catalog_stores', 'Y');
13
14 UseStore::installCatalogStores();
15 }
16
17 public function disable()
18 {
19 Option::delete('catalog', ['name' => 'preset_store_catalog_stores']);
20 }
21
22 public function isOn(): bool
23 {
24 return Option::get('catalog', 'preset_store_catalog_stores', 'N') === 'Y';
25 }
26}