You are here

function book_node_import_fields in Node import 5

Same name and namespace in other branches
  1. 6 supported/book.inc \book_node_import_fields()

Implementation of hook_node_import_fields().

File

supported/book.inc, line 11
Support file for book module.

Code

function book_node_import_fields($type) {
  if ($type == 'book') {
    return array(
      'node_import_book_parent' => t('Book page: Parent link'),
      'weight' => t('Book page: Page weight'),
    );
  }
}