1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
portal.php
См. документацию.
1<?php
2
3namespace Bitrix\Socialnetwork\Integration\Bitrix24;
4
5use Bitrix\Main\Loader;
6use Bitrix\Main\Type\DateTime;
7
8class Portal
9{
10 public function getCreationDateTime(): ?DateTime
11 {
12 if (!Loader::includeModule('bitrix24'))
13 {
14 return null;
15 }
16
17 $createTime = (int)(\CBitrix24::getCreateTime());
18
19 if ($createTime <= 0)
20 {
21 return null;
22 }
23
24 return DateTime::createFromTimestamp($createTime);
25 }
26}