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