forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependentType.php
More file actions
40 lines (22 loc) · 834 Bytes
/
DependentType.php
File metadata and controls
40 lines (22 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
namespace ProcessMaker\ImportExport;
abstract class DependentType
{
const SCRIPTS = 'scripts';
const CATEGORIES = 'categories';
const SCREENS = 'screens';
const INTERSTITIAL_SCREEN = 'interstitial_screen';
const NOTIFICATION_SETTINGS = 'process_notification_settings';
const ENVIRONMENT_VARIABLES = 'environment_variables';
const ENVIRONMENT_VARIABLE_VALUE = 'environment_variables_value';
const SCRIPT_EXECUTORS = 'script_executors';
const SUB_PROCESSES = 'sub_processes';
const GROUPS = 'groups';
const USERS = 'users';
const USER_ASSIGNMENT = 'user_assignment';
const GROUP_ASSIGNMENT = 'group_assignment';
const USER_RECIPIENT = 'user_recipient';
const GROUP_RECIPIENT = 'group_recipient';
const MEDIA = 'media';
const EMBED = 'embed';
}