function features_test_node_info in Features 6
Same name and namespace in other branches
- 7.2 tests/features_test/features_test.features.inc \features_test_node_info()
- 7 tests/features_test.features.inc \features_test_node_info()
Implementation of hook_node_info().
File
- tests/
features_test.features.inc, line 30
Code
function features_test_node_info() {
$items = array(
'features_test' => array(
'name' => t('Testing: Features'),
'module' => 'features',
'description' => t('Content type provided for Features tests.'),
'has_title' => '1',
'title_label' => t('Title'),
'has_body' => '1',
'body_label' => t('Body'),
'min_word_count' => '0',
'help' => '',
),
);
return $items;
}