-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathos2web_hearings.strongarm.inc
67 lines (58 loc) · 2.22 KB
/
os2web_hearings.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
<?php
/**
* @file
* os2web_hearings.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function os2web_hearings_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 = 'date_format_kun_dato';
$strongarm->value = 'd.m.y';
$export['date_format_kun_dato'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'language_content_type_hearing';
$strongarm->value = '0';
$export['language_content_type_hearing'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'menu_options_hearing';
$strongarm->value = array(
0 => 'menu-indholdsmenu',
);
$export['menu_options_hearing'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'menu_parent_hearing';
$strongarm->value = 'main-menu:0';
$export['menu_parent_hearing'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_options_hearing';
$strongarm->value = array(
0 => 'status',
);
$export['node_options_hearing'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_preview_hearing';
$strongarm->value = '0';
$export['node_preview_hearing'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_submitted_hearing';
$strongarm->value = 0;
$export['node_submitted_hearing'] = $strongarm;
return $export;
}