function amazon_examples_node_info in Amazon Product Advertisement API 7
Same name and namespace in other branches
- 6 amazon_examples/amazon_examples.features.inc \amazon_examples_node_info()
- 7.2 amazon_examples/amazon_examples.features.inc \amazon_examples_node_info()
Implementation of hook_node_info().
File
- amazon_examples/
amazon_examples.features.inc, line 30 - amazon_examples.features.inc
Code
function amazon_examples_node_info() {
$items = array(
'amazon_example' => array(
'name' => t('Amazon Example'),
'base' => 'node_content',
'description' => t('This is a simple content type that demonstrates an Amazon Field and has a related view.'),
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
return $items;
}