migrate_example_baseball.features.inc in Migrate 7.2
File
migrate_example_baseball/migrate_example_baseball.features.incView source
<?php
/**
* Implementation of hook_node_info().
*/
function migrate_example_baseball_node_info() {
$items = array(
'migrate_example_baseball' => array(
'name' => t('Migrate example - Baseball'),
'base' => 'node_content',
'description' => t('A baseball box score'),
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
return $items;
}
Functions
Name![]() |
Description |
---|---|
migrate_example_baseball_node_info | Implementation of hook_node_info(). |