You are here

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

/**
 * Implementation of hook_node_info().
 */
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;
}

Functions

Namesort descending Description
migrate_extras_pathauto_node_info Implementation of hook_node_info().