1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
sectionentityhelper.php
См. документацию.
1<?php
2
3namespace Bitrix\Calendar\Integration\SocialNetwork\Collab\Entity;
4
5use Bitrix\Main\Loader;
6use Bitrix\Main\ObjectException;
7
9{
13 public static function getIfCollab(int $id): ?SectionEntity
14 {
15 try
16 {
17 if (!Loader::includeModule('socialnetwork'))
18 {
19 return null;
20 }
21
22 return new SectionEntity($id);
23 }
24 catch (ObjectException)
25 {
26 }
27
28 return null;
29 }
30}