forked from drupalprojects/panopoly_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanopoly_core.strongarm.inc
35 lines (30 loc) · 1.06 KB
/
panopoly_core.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
<?php
/**
* @file
* panopoly_core.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function panopoly_core_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 = 'ctools_content_all_views';
$strongarm->value = 0;
$export['ctools_content_all_views'] = $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_node_edit_disabled';
$strongarm->value = FALSE;
$export['page_manager_node_edit_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 = 'page_manager_node_view_disabled';
$strongarm->value = FALSE;
$export['page_manager_node_view_disabled'] = $strongarm;
return $export;
}