Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
ibase.php
1<?php
10
15interface iBase
16{
17 const CODE_MAIL = 'mail';
18 const CODE_TOLOKA = 'toloka';
19 const CODE_WEB_HOOK = 'web_hook';
20 const CODE_SMS = 'sms';
21 const CODE_IM = 'im';
22 const CODE_CALL = 'call';
23 const CODE_AUDIO_CALL = 'audio_call';
24 const CODE_UNDEFINED = '';
25 public const CODE_MASTER_YANDEX = 'master_yandex';
26 const EVENT_NAME = 'onSenderMessageList';
27
33 public function getName();
34
40 public function getCode();
41
47 public function getSupportedTransports();
48
55 public function loadConfiguration($id = null);
56
63 public function saveConfiguration(Configuration $configuration);
64
71 public function copyConfiguration($id);
72}
saveConfiguration(Configuration $configuration)