You are here

function book_node_import_static in Node import 5

Implementation of hook_node_import_static().

File

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

Code

function book_node_import_static($type) {
  if ($type == 'book') {
    return array(
      'parent' => 0,
      'weight' => 0,
    );
  }
}