-
Notifications
You must be signed in to change notification settings - Fork 0
/
bibsdb_front_page.features.inc
54 lines (49 loc) · 1.15 KB
/
bibsdb_front_page.features.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
<?php
/**
* @file
* bibsdb_front_page.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function bibsdb_front_page_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "page_manager" && $api == "pages_default") {
return array("version" => "1");
}
}
/**
* Implements hook_views_api().
*/
function bibsdb_front_page_views_api($module = NULL, $api = NULL) {
return array("api" => "3.0");
}
/**
* Implements hook_fe_nodequeue_export_fields().
*/
function bibsdb_front_page_fe_nodequeue_export_fields() {
$nodequeues = array();
// Exported nodequeues: bibsdb_front_page_content
$nodequeues['bibsdb_front_page_content'] = array(
'name' => 'bibsdb_front_page_content',
'title' => 'Front Page content',
'subqueue_title' => '',
'size' => 4,
'link' => '',
'link_remove' => '',
'owner' => 'nodequeue',
'show_in_ui' => 1,
'show_in_tab' => 1,
'show_in_links' => 0,
'reference' => 0,
'reverse' => 0,
'i18n' => 0,
'subqueues' => 1,
'types' => array(
0 => 'ding_group',
1 => 'ding_page',
),
'roles' => array(),
'count' => 0,
);
return $nodequeues;
}