Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
Context.php
1<?php
2
4
5final class Context
6{
7 public const ALL = 'ALL';
8 public const USER = 'USER';
9 public const CHAT = 'CHAT';
10 public const LINES = 'LINES';
11 public const CRM = 'CRM';
12
13 public static function getTypes(): array
14 {
15 return [
21 ];
22 }
23}