-
Notifications
You must be signed in to change notification settings - Fork 0
/
os_base.strongarm.inc
45 lines (39 loc) · 1.35 KB
/
os_base.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
<?php
/**
* @file
* os_base.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function os_base_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 = 'comment_page';
$strongarm->value = '0';
$export['comment_page'] = $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_page';
$strongarm->value = array(
0 => 'status',
1 => 'revision',
);
$export['node_options_page'] = $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_page';
$strongarm->value = FALSE;
$export['node_submitted_page'] = $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_page_pattern';
$strongarm->value = '[node:menu-link:parent:url:path]/[node:title]';
$export['pathauto_node_page_pattern'] = $strongarm;
return $export;
}