Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
counterdictionary.php
1<?php
2
4
6
8{
9 public const LEGACY_COUNTER_ENABLED = 'sonet_use_legacy_counter'; // completely disables an old counter which uses the table: b_user_counter
10 public const COUNTER_ENABLED_FOR_USER = 'sonet_use_new_counter_for_user';
11 public const PREFIX = 'sonet_';
12 public const META_PROP_ALL = 'all';
13 public const META_PROP_GROUP = 'group';
14 public const META_PROP_PROJECT = 'project';
15 public const META_PROP_SONET = 'sonet';
16 public const META_PROP_SCRUM = 'scrum';
17 public const META_PROP_NONE = 'none';
18
19 public const LEFT_MENU_SONET = 'sonet_total';
20
21 public const
22 COUNTER_TOTAL = 'total',
23 COUNTER_GROUP_TOTAL = 'group_total',
24
25 COUNTER_NEW_POSTS = 'new_posts',
26 COUNTER_NEW_COMMENTS = 'new_comments',
27
28 COUNTER_FLAG_COUNTED = 'flag_computed_20210501',
29 COUNTER_FLAG_CLEARED = 'flag_cleared';
30
31 public const SUPPORTED_EVENTS = [
32 EventDictionary::EVENT_SPACE_LIVEFEED_POST_ADD,
33 EventDictionary::EVENT_SPACE_LIVEFEED_POST_UPD,
34 EventDictionary::EVENT_SPACE_LIVEFEED_POST_DEL,
35 EventDictionary::EVENT_SPACE_LIVEFEED_POST_VIEW,
36 EventDictionary::EVENT_SPACE_LIVEFEED_COMMENT_ADD,
37 EventDictionary::EVENT_SPACE_LIVEFEED_COMMENT_UPD,
38 EventDictionary::EVENT_SPACE_LIVEFEED_COMMENT_DEL,
39 EventDictionary::EVENT_SPACE_LIVEFEED_READ_ALL,
40 ];
41}