function isotope_example_node_info in Isotope (with Masonry and Packery) 7.2
Implements hook_node_info().
File
- isotope_example/
isotope_example.module, line 126 - Simple example module.
Code
function isotope_example_node_info() {
return array(
'isotope_example' => array(
'name' => t('Isotope Example Node Type'),
'base' => 'isotope_example',
'description' => t('This is an example node type with a few fields.'),
'title_label' => t('Example Title'),
'locked' => TRUE,
),
);
}