-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlbdev.strongarm.inc
35 lines (30 loc) · 961 Bytes
/
lbdev.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
* lbdev.strongarm.inc
*/
/**
* Implementation of hook_strongarm().
*/
function lbdev_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 = 'cache';
$strongarm->value = '0';
$export['cache'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'preprocess_css';
$strongarm->value = '0';
$export['preprocess_css'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'preprocess_js';
$strongarm->value = '0';
$export['preprocess_js'] = $strongarm;
return $export;
}