migrate_extras_pathauto.features.inc 487 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Implementation of hook_node_info().
  4. */
  5. function migrate_extras_pathauto_node_info() {
  6. $items = array(
  7. 'migrate_example_pathauto' => array(
  8. 'name' => t('Migrate example - pathauto'),
  9. 'base' => 'node_content',
  10. 'description' => t('This content type is used for demonstrating and testing Migrate Example support for the Pathauto module.'),
  11. 'has_title' => '1',
  12. 'title_label' => t('Title'),
  13. 'help' => '',
  14. ),
  15. );
  16. return $items;
  17. }