-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrdf_server.tar
39 lines (37 loc) · 4.5 KB
/
rdf_server.tar
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
rdf_server/rdf_server.features.inc 100644 765 765 1034 13127761040 014202 ustar <?php
/**
* @file
* rdf_server.features.inc
*/
/**
* Implements hook_default_search_api_server().
*/
function rdf_server_default_search_api_server() {
$items = array();
$items['rdf_server'] = entity_import('search_api_server', '{
"name" : "rdf_server",
"machine_name" : "rdf_server",
"description" : "",
"class" : "rdf_indexer_service",
"options" : { "store_id" : "test_store" },
"enabled" : "1",
"microdata" : { "#attributes" : { "itemscope" : "" } },
"rdf_mapping" : []
}');
return $items;
}