1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
Files.php
См. документацию.
1<?php
2
3namespace Bitrix\Im\V2\Chat\Collab\Entity;
4
5use Bitrix\Im\V2\Chat\Collab\Entity;
6use Bitrix\Main\Loader;
7use Bitrix\Socialnetwork\Collab\Link\LinkType;
8
9class Files extends Entity
10{
11
12 public function getCounterInternal(): int
13 {
14 return 0;
15 }
16
17 protected function getLinkType(): LinkType
18 {
19 return LinkType::Disk;
20 }
21
22 public static function isAvailable(): bool
23 {
24 return Loader::includeModule('disk');
25 }
26
27 public static function getRestEntityName(): string
28 {
29 return 'files';
30 }
31}
static getRestEntityName()
Определения Files.php:27
static isAvailable()
Определения Files.php:22
Определения ufield.php:9