function _book_link_defaults

_book_link_defaults($nid)

Returns an array with default values for a book page's menu link.

Parameters

$nid: The ID of the node whose menu link is being created.

Return value

The default values for the menu link.

File

modules/book/book.module, line 1057
Allows users to create and organize related content in an outline.

Code

function _book_link_defaults($nid) {
  return array('original_bid' => 0, 'menu_name' => '', 'nid' => $nid, 'bid' => 0, 'router_path' => 'node/%', 'plid' => 0, 'mlid' => 0, 'has_children' => 0, 'weight' => 0, 'module' => 'book', 'options' => array());
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!book!book.module/function/_book_link_defaults/7.x