forked from ding2/ding_facetbrowser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ding_facetbrowser.strongarm.inc
57 lines (54 loc) · 1.21 KB
/
ding_facetbrowser.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
51
52
53
54
55
56
57
<?php
/**
* @file
* ding_facetbrowser.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function ding_facetbrowser_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 = 'ding_facetbrowser_facets';
$strongarm->value = array(
0 => array(
'name' => 'facet.subject',
'title' => 'Emne',
'weight' => '-10',
),
1 => array(
'name' => 'facet.creator',
'title' => 'Forfatter',
'weight' => '-9',
),
2 => array(
'name' => 'facet.type',
'title' => 'Materialetype',
'weight' => '-8',
),
3 => array(
'name' => 'facet.category',
'title' => 'Kategori',
'weight' => '-7',
),
4 => array(
'name' => 'facet.language',
'title' => 'Sprog',
'weight' => '-6',
),
5 => array(
'name' => 'facet.date',
'title' => 'Årstal',
'weight' => '-5',
),
6 => array(
'name' => 'facet.acSource',
'title' => 'Kilde',
'weight' => '-4',
),
);
$export['ding_facetbrowser_facets'] = $strongarm;
return $export;
}