-
Notifications
You must be signed in to change notification settings - Fork 0
/
ca_gallery.features.inc
executable file
·80 lines (73 loc) · 1.64 KB
/
ca_gallery.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
/**
* @file
* ca_gallery.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function ca_gallery_ctools_plugin_api() {
list($module, $api) = func_get_args();
if ($module == "page_manager" && $api == "pages_default") {
return array("version" => "1");
}
list($module, $api) = func_get_args();
if ($module == "strongarm" && $api == "strongarm") {
return array("version" => "1");
}
list($module, $api) = func_get_args();
if ($module == "weight" && $api == "weight") {
return array("version" => "1");
}
}
/**
* Implements hook_views_api().
*/
function ca_gallery_views_api() {
return array("api" => "3.0");
}
/**
* Implements hook_node_info().
*/
function ca_gallery_node_info() {
$items = array(
'ca_gallery' => array(
'name' => t('Gallery'),
'base' => 'node_content',
'description' => '',
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
'ca_gallery_image' => array(
'name' => t('Gallery Image'),
'base' => 'node_content',
'description' => '',
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
return $items;
}
/**
* Implements hook_weight_features_default_settings().
*/
function ca_gallery_weight_features_default_settings() {
$settings = array();
$settings['ca_gallery'] = array(
'enabled' => 1,
'range' => 100,
'menu_weight' => 0,
'default' => 0,
'sync_translations' => 0,
);
$settings['ca_gallery_image'] = array(
'enabled' => 1,
'range' => 100,
'menu_weight' => 0,
'default' => 0,
'sync_translations' => 0,
);
return $settings;
}