Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
videostrategytype.php
1<?php
2
3namespace Bitrix\Im\Call;
4
11 public const ALLOW_ALL = 'AllowAll';
12 public const ALLOW_NONE = 'AllowNone';
13 public const ONLY_SPEAKER = 'OnlySpeaker';
14 public const CURRENTLY_TALKING = 'CurrentlyTalking';
15
16 public static function getList()
17 {
18 return [static::ALLOW_ALL, static::ALLOW_NONE, static::ONLY_SPEAKER, static::CURRENTLY_TALKING];
19 }
20}