-
Notifications
You must be signed in to change notification settings - Fork 3
/
os2web_cp_service.strongarm.inc
94 lines (87 loc) · 2.84 KB
/
os2web_cp_service.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
93
94
<?php
/**
* @file
* os2web_cp_service.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function os2web_cp_service_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 = 'field_bundle_settings_node__os2web_cp_service_cp_case';
$strongarm->value = array(
'view_modes' => array(),
'extra_fields' => array(
'form' => array(
'title' => array(
'weight' => '-5',
),
'path' => array(
'weight' => '30',
),
),
'display' => array(),
),
);
$export['field_bundle_settings_node__os2web_cp_service_cp_case'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'field_bundle_settings_node__os2web_cp_service_cp_document';
$strongarm->value = array(
'view_modes' => array(
'teaser' => array(
'custom_settings' => TRUE,
),
'full' => array(
'custom_settings' => FALSE,
),
'rss' => array(
'custom_settings' => FALSE,
),
'search_index' => array(
'custom_settings' => FALSE,
),
'search_result' => array(
'custom_settings' => FALSE,
),
'token' => array(
'custom_settings' => FALSE,
),
),
'extra_fields' => array(
'form' => array(
'title' => array(
'weight' => '0',
),
'path' => array(
'weight' => '30',
),
),
'display' => array(),
),
);
$export['field_bundle_settings_node__os2web_cp_service_cp_document'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'pathauto_node_os2web_cp_service_cp_case_pattern';
$strongarm->value = 'sag/[node:field_os2web_cp_service_case_id]';
$export['pathauto_node_os2web_cp_service_cp_case_pattern'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'pathauto_node_os2web_cp_service_cp_document_pattern';
$strongarm->value = 'dok/[node:field_os2web_cp_service_doc_id]';
$export['pathauto_node_os2web_cp_service_cp_document_pattern'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'pathauto_punctuation_slash';
$strongarm->value = '2';
$export['pathauto_punctuation_slash'] = $strongarm;
return $export;
}