- Модуль: im
- Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat/VideoConfChat.php
- Класс: BitrixImV2ChatVideoConfChat
- Вызов: VideoConfChat::generateTitle
public function generateTitle(): string
{
CGlobalCounter::Increment('im_videoconf_count', CGlobalCounter::ALL_SITES, false);
$videoconfCount = CGlobalCounter::GetValue('im_videoconf_count', CGlobalCounter::ALL_SITES);
if ($videoconfCount === self::MAX_CONF_NUMBER)
{
CGlobalCounter::Set('im_videoconf_count', 1, CGlobalCounter::ALL_SITES, '', false);
}
return Loc::GetMessage('IM_VIDEOCONF_NAME_FORMAT_NEW', [
'#NUMBER#' => $videoconfCount
]);
}