forked from developmentseed/FeatureServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fserver.strongarm.inc
37 lines (34 loc) · 1.05 KB
/
fserver.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
<?php
/**
* Implementation of hook_strongarm().
*/
function fserver_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 = 'content_extra_weights_fserver_project';
$strongarm->value = array(
'title' => '-5',
'body_field' => '8',
'revision_information' => '10',
'menu' => '0',
'book' => '9',
'attachments' => '13',
);
$export['content_extra_weights_fserver_project'] = $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_fserver_release';
$strongarm->value = array(
'title' => '-5',
'body_field' => '0',
'revision_information' => '20',
'menu' => '-2',
'book' => '10',
'attachments' => '30',
);
$export['content_extra_weights_fserver_release'] = $strongarm;
return $export;
}