forked from dingproject/ding-campaign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathding_campaign.strongarm.inc
More file actions
57 lines (51 loc) · 1.83 KB
/
Copy pathding_campaign.strongarm.inc
File metadata and controls
57 lines (51 loc) · 1.83 KB
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
51
52
53
54
55
56
57
<?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' => '-2',
'revision_information' => '2',
'author' => '3',
'options' => '4',
'comment_settings' => '6',
'menu' => '-4',
'taxonomy' => '-3',
'path' => '7',
'path_redirect' => '5',
);
$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;
}