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