function scheduler_test_node_info in Scheduler 7
Implements hook_node_info().
File
- tests/
modules/ scheduler_test.module, line 11 - Main functions and hook implementations of the Scheduler Test module.
Code
function scheduler_test_node_info() {
$items = array(
'scheduler_test' => array(
'name' => t('Scheduler test'),
'base' => 'node_content',
'description' => t('This content type is used to test the Scheduler module.'),
'has_title' => '1',
'title_label' => t('Title'),
),
);
return $items;
}