migrate_extras_pathauto.features.inc in Migrate Extras 7.2
File
migrate_extras_examples/migrate_extras_pathauto/migrate_extras_pathauto.features.inc
View source
<?php
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;
}