You are here

function migrate_example_oracle_node_info in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 migrate_example/migrate_example_oracle/migrate_example_oracle.features.inc \migrate_example_oracle_node_info()

Implementation of hook_node_info().

File

migrate_example/migrate_example_oracle/migrate_example_oracle.features.inc, line 6

Code

function migrate_example_oracle_node_info() {
  $items = array(
    'migrate_example_oracle' => array(
      'name' => t('Migrate example - oracle'),
      'module' => 'features',
      'description' => t('Example and test fodder for migration directly from an Oracle database.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'has_body' => '1',
      'body_label' => t('Body'),
      'min_word_count' => '0',
      'help' => '',
    ),
  );
  return $items;
}