You are here

function migrate_extras_pathauto_node_info in Migrate Extras 7.2

Same name and namespace in other branches
  1. 6.2 migrate_extras_examples/migrate_extras_pathauto/migrate_extras_pathauto.features.inc \migrate_extras_pathauto_node_info()

Implementation of hook_node_info().

File

migrate_extras_examples/migrate_extras_pathauto/migrate_extras_pathauto.features.inc, line 6

Code

function migrate_extras_pathauto_node_info() {
  $items = array(
    'migrate_example_pathauto' => array(
      'name' => t('Migrate example - pathauto'),
      'base' => 'node_content',
      'description' => t('This content type is used for demonstrating and testing Migrate Example support for the Pathauto module.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  return $items;
}