Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
Dictionary.php
1<?php
2
4
5final class Dictionary
6{
7 public const FILTER_MODES = [
8 'all' => 'all',
9 'my' => 'my',
10 'other' => 'other',
11 ];
12
13 public const SPACE_VISIBILITY_TYPES = [
14 'open' => 'open',
15 'closed' => 'closed',
16 'secret' => 'secret',
17 ];
18
19 public const USER_ROLES = [
20 'nonMember' => 'nonMember',
21 'applicant' => 'applicant',
22 'invited' => 'invited',
23 'member' => 'member',
24 ];
25
26 public const
27 FEATURE_GENERAL = 'general',
28 FEATURE_DISCUSSIONS = 'discussions',
29 FEATURE_TASKS = 'tasks',
30 FEATURE_CALENDAR = 'calendar',
31 FEATURE_FILES = 'files';
32
33 public const AVAILABLE_FEATURES = [
34 self::FEATURE_DISCUSSIONS => true,
35 self::FEATURE_TASKS => true,
36 self::FEATURE_CALENDAR => true,
37 self::FEATURE_FILES => true,
38 ];
39
40 public const SPACE_LIST_STATES = [
41 'default' => 'default',
42 'collapsed' => 'collapsed',
43 ];
44}