forked from mikl/ding_campaign
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathding_campaign.strongarm.inc
50 lines (44 loc) · 1.65 KB
/
ding_campaign.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
<?php
/**
* Implementation of hook_strongarm().
*/
function ding_campaign_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_anonymous_campaign';
$strongarm->value = 0;
$export['comment_anonymous_campaign'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_campaign';
$strongarm->value = '0';
$export['comment_campaign'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_default_mode_campaign';
$strongarm->value = '4';
$export['comment_default_mode_campaign'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'content_extra_weights_campaign';
$strongarm->value = array(
'title' => '-5',
'body_field' => '-3',
'menu' => '-4',
);
$export['content_extra_weights_campaign'] = $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_campaign';
$strongarm->value = array(
0 => 'status',
);
$export['node_options_campaign'] = $strongarm;
return $export;
}