1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
CollabFeatures.php
См. документацию.
1<?php
2
3declare(strict_types=1);
4
6
9
11{
12 public static function createWithDefaultValue(): static
13 {
14 $value = new static();
15
16 $allowedFeatures = array_keys(\CSocNetAllowed::getAllowedFeatures());
17
18 foreach ($allowedFeatures as $featureName)
19 {
20 $value->features[$featureName] = false;
21 }
22
23 foreach (CollabFeature::FEATURES as $featureName)
24 {
25 $value->features[$featureName] = true;
26 }
27
28 return $value;
29 }
30}