migrate_example_baseball.features.inc 402 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Implementation of hook_node_info().
  4. */
  5. function migrate_example_baseball_node_info() {
  6. $items = array(
  7. 'migrate_example_baseball' => array(
  8. 'name' => t('migrate_example_baseball'),
  9. 'base' => 'node_content',
  10. 'description' => t('A baseball box score'),
  11. 'has_title' => '1',
  12. 'title_label' => t('Title'),
  13. 'help' => '',
  14. ),
  15. );
  16. return $items;
  17. }