forked from developmentseed/FeatureServer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfserver.features.node.inc
More file actions
43 lines (42 loc) · 1.25 KB
/
fserver.features.node.inc
File metadata and controls
43 lines (42 loc) · 1.25 KB
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
<?php
/**
* Helper to implementation of hook_node_info().
*/
function _fserver_node_info() {
$items = array(
'fserver_distro' => array(
'name' => t('Distribution'),
'module' => 'features',
'description' => t('A feature distribution page. Provides the drush make commands and releases for download.'),
'has_title' => '1',
'title_label' => t('Distribution'),
'has_body' => '1',
'body_label' => t('Body'),
'min_word_count' => '0',
'help' => '',
),
'fserver_project' => array(
'name' => t('Project'),
'module' => 'features',
'description' => t('A feature project page. Provides a summary of project information and releases for download.'),
'has_title' => '1',
'title_label' => t('Project'),
'has_body' => '1',
'body_label' => t('Description'),
'min_word_count' => '0',
'help' => '',
),
'fserver_release' => array(
'name' => t('Release'),
'module' => 'features',
'description' => t('A single release package for a feature.'),
'has_title' => '1',
'title_label' => t('Release'),
'has_body' => '1',
'body_label' => t('Notes'),
'min_word_count' => '0',
'help' => '',
),
);
return $items;
}