migrate_extras_media.features.inc 502 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. * migrate_extras_media.features.inc
  5. */
  6. /**
  7. * Implements hook_node_info().
  8. */
  9. function migrate_extras_media_node_info() {
  10. $items = array(
  11. 'migrate_extras_media_example' => array(
  12. 'name' => t('Migrate Extras Media Example'),
  13. 'base' => 'node_content',
  14. 'description' => t('Content type for testing Migrate Extras support for the Media module.'),
  15. 'has_title' => '1',
  16. 'title_label' => t('Title'),
  17. 'help' => '',
  18. ),
  19. );
  20. return $items;
  21. }