You are here

function migrate_extras_pathauto_node_info in Migrate Extras 6.2

Same name and namespace in other branches
  1. 7.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'),
      'module' => 'features',
      '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'),
      'has_body' => '1',
      'body_label' => t('Body'),
      'min_word_count' => '0',
      'help' => '',
    ),
  );
  return $items;
}