-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimagex_workflow.strongarm.inc
92 lines (80 loc) · 3.16 KB
/
imagex_workflow.strongarm.inc
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
/**
* @file
* imagex_workflow.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function imagex_workflow_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access';
$strongarm->value = 'taxonomy';
$export['workbench_access'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access_allow_multiple';
$strongarm->value = 0;
$export['workbench_access_allow_multiple'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access_auto_assign';
$strongarm->value = 1;
$export['workbench_access_auto_assign'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access_custom_form';
$strongarm->value = 1;
$export['workbench_access_custom_form'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access_label';
$strongarm->value = 'Workbench Section';
$export['workbench_access_label'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access_menu';
$strongarm->value = array(
'menu-footer' => 0,
'menu-join-us' => 0,
'menu-linux-foundation-network' => 0,
'main-menu' => 0,
'management' => 0,
'navigation' => 0,
'menu-primary-menu' => 0,
'user-menu' => 0,
'menu-using-answers' => 0,
'menu-utility-menu' => 0,
);
$export['workbench_access_menu'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access_menu_limit';
$strongarm->value = 1;
$export['workbench_access_menu_limit'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access_menu_override';
$strongarm->value = 0;
$export['workbench_access_menu_override'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workbench_access_taxonomy';
$strongarm->value = array(
'workbench_section' => 'workbench_section',
);
$export['workbench_access_taxonomy'] = $strongarm;
features_alter_code('variable', $export);
return $export;
}