1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
FileProvider.php
См. документацию.
1<?php
2
3declare(strict_types=1);
4
5namespace Bitrix\Socialnetwork\Provider;
6
7use Bitrix\Socialnetwork\Helper\InstanceTrait;
8use Bitrix\Socialnetwork\Provider\File\File;
9use CFile;
10
12{
13 use InstanceTrait;
14
15 public function get(int $fileId): ?File
16 {
17 $file = CFile::GetFileArray($fileId);
18
19 if ($file === false)
20 {
21 return null;
22 }
23
24 return new File(
25 id: (int)$file['ID'],
26 src: $file['SRC'],
27 );
28 }
29}