function vms_example_node_info in Views Menu Support 7
Same name and namespace in other branches
- 8 vms_example/vms_example.features.inc \vms_example_node_info()
Implements hook_node_info().
File
- vms_example/
vms_example.features.inc, line 30 - vms_example.features.inc
Code
function vms_example_node_info() {
$items = array(
'sidebar_message' => array(
'name' => t('Sidebar message'),
'base' => 'node_content',
'description' => t('This is an content type used for examplifying how Views Menu Support and Menu Item Reference Widget can be used together.'),
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
return $items;
}