date_migrate_example.features.inc 527 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * Examples and test folder for migration into date fields.
  5. */
  6. /**
  7. * Implements hook_node_info().
  8. */
  9. function date_migrate_example_node_info() {
  10. $items = array(
  11. 'date_migrate_example' => array(
  12. 'name' => t('Migrate example - dates'),
  13. 'base' => 'node_content',
  14. 'description' => t('This content type is used for demonstrating and testing migration into Date fields.'),
  15. 'has_title' => '1',
  16. 'title_label' => t('Title'),
  17. 'help' => '',
  18. ),
  19. );
  20. return $items;
  21. }