date_all_day_test_feature.features.inc in Date 7.2
File
date_all_day/tests/date_all_day_test_feature/date_all_day_test_feature.features.inc
View source
<?php
function date_all_day_test_feature_node_info() {
$items = array(
'date_all_day_test' => array(
'name' => t('Date Test'),
'base' => 'node_content',
'description' => t('This content type is used for testing the Date All Day module.'),
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
drupal_alter('node_info', $items);
return $items;
}