1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
AttendeeCodeTrait.php
См. документацию.
1<?php
2
3namespace Bitrix\Socialnetwork\Space\List\RecentActivity\Event\Trait;
4
5trait AttendeeCodeTrait
6{
7 private function getGroupIdFromAttendeeCode(string $attendeeCode): ?int
8 {
9 if (!str_starts_with($attendeeCode, 'SG'))
10 {
11 return null;
12 }
13 $attendeeCodeMainInfo = explode('_', $attendeeCode)[0] ?? '';
14 $groupId = (int)substr($attendeeCodeMainInfo, 2);
15
16 if ($groupId <= 0)
17 {
18 return null;
19 }
20
21 return $groupId;
22 }
23}