-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathding_ting_frontend.strongarm.inc
42 lines (36 loc) · 1.41 KB
/
ding_ting_frontend.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
<?php
/**
* @file
* ding_ting_frontend.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function ding_ting_frontend_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 = 'page_manager_search_disabled_node';
$strongarm->value = FALSE;
$export['page_manager_search_disabled_node'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'page_manager_user_view_disabled';
$strongarm->value = FALSE;
$export['page_manager_user_view_disabled'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'pm_existing_pages_disabled_fulltext';
$strongarm->value = FALSE;
$export['pm_existing_pages_disabled_fulltext'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'pm_existing_pages_disabled_infomedia';
$strongarm->value = FALSE;
$export['pm_existing_pages_disabled_infomedia'] = $strongarm;
return $export;
}