array( 'arguments' => array('book_link' => NULL), ), 'book_export_html' => array( 'arguments' => array('title' => NULL, 'content' => NULL), 'file' => 'book.pages.inc', ), 'book_admin_table' => array( 'arguments' => array('form' => NULL), ), 'book_title_link' => array( 'arguments' => array('link' => NULL), ), 'book_all_books_block' => array( 'arguments' => array('book_menus' => array()), ), ); } /** * Implementation of hook_perm(). */ function book_perm() { return array('add content to books', 'administer book outlines', 'create new books', 'access printer-friendly version'); } /** * Implementation of hook_link(). */ function book_link($type, $node = NULL, $teaser = FALSE) { $links = array(); if ($type == 'node' && isset($node->book)) { if (!$teaser) { $child_type = variable_get('book_child_type', 'book'); if ((user_access('add content to books') || user_access('administer book outlines')) && node_access('create', $child_type) && $node->status == 1 && $node->book['depth'] < MENU_MAX_DEPTH) { $links['book_add_child'] = array( 'title' => t('Add child page'), 'href' => "node/add/". str_replace('_', '-', $child_type), 'query' => "parent=". $node->book['mlid'], ); } if (user_access('access printer-friendly version')) { $links['book_printer'] = array( 'title' => t('Printer-friendly version'), 'href' => 'book/export/html/'. $node->nid, 'attributes' => array('title' => t('Show a printer-friendly version of this book page and its sub-pages.')) ); } } } return $links; } /** * Implementation of hook_menu(). */ function book_menu() { $items['admin/content/book'] = array( 'title' => 'Books', 'description' => "Manage your site's book outlines.", 'page callback' => 'book_admin_overview', 'access arguments' => array('administer book outlines'), 'file' => 'book.admin.inc', ); $items['admin/content/book/list'] = array( 'title' => 'List', 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items['admin/content/book/settings'] = array( 'title' => 'Settings', 'page callback' => 'drupal_get_form', 'page arguments' => array('book_admin_settings'), 'access arguments' => array('administer site configuration'), 'type' => MENU_LOCAL_TASK, 'weight' => 8, 'file' => 'book.admin.inc', ); $items['admin/content/book/%node'] = array( 'title' => 'Re-order book pages and change titles', 'page callback' => 'drupal_get_form', 'page arguments' => array('book_admin_edit', 3), 'access callback' => '_book_outline_access', 'access arguments' => array(3), 'type' => MENU_CALLBACK, 'file' => 'book.admin.inc', ); $items['book'] = array( 'title' => 'Books', 'page callback' => 'book_render', 'access arguments' => array('access content'), 'type' => MENU_SUGGESTED_ITEM, 'file' => 'book.pages.inc', ); $items['book/export/%/%'] = array( 'page callback' => 'book_export', 'page arguments' => array(2, 3), 'access arguments' => array('access printer-friendly version'), 'type' => MENU_CALLBACK, 'file' => 'book.pages.inc', ); $items['node/%node/outline'] = array( 'title' => 'Outline', 'page callback' => 'book_outline', 'page arguments' => array(1), 'access callback' => '_book_outline_access', 'access arguments' => array(1), 'type' => MENU_LOCAL_TASK, 'weight' => 2, 'file' => 'book.pages.inc', ); $items['node/%node/outline/remove'] = array( 'title' => 'Remove from outline', 'page callback' => 'drupal_get_form', 'page arguments' => array('book_remove_form', 1), 'access callback' => '_book_outline_remove_access', 'access arguments' => array(1), 'type' => MENU_CALLBACK, 'file' => 'book.pages.inc', ); $items['book/js/form'] = array( 'page callback' => 'book_form_update', 'access arguments' => array('access content'), 'type' => MENU_CALLBACK, 'file' => 'book.pages.inc', ); $items['book/js/admin/%node'] = array( 'page callback' => 'book_admin_js_update', 'access callback' => '_book_outline_access', 'access arguments' => array(3), 'type' => MENU_CALLBACK, 'file' => 'book.admin.inc', ); return $items; } /** * Menu item access callback - determine if the outline tab is accessible. */ function _book_outline_access($node) { return user_access('administer book outlines') && node_access('view', $node); } /** * Menu item access callback - determine if the user can remove nodes from the outline. */ function _book_outline_remove_access($node) { return isset($node->book) && ($node->book['bid'] != $node->nid) && _book_outline_access($node); } /** * Implementation of hook_init(). Add's the book module's CSS. */ function book_init() { drupal_add_css(drupal_get_path('module', 'book') .'/book.css'); } /** * Implementation of hook_block(). * * Displays the book table of contents in a block when the current page is a * single-node view of a book node. */ function book_block($op = 'list', $delta = 0, $edit = array()) { $block = array(); switch ($op) { case 'list': $block[0]['info'] = t('Book navigation'); $block[0]['cache'] = BLOCK_CACHE_PER_PAGE | BLOCK_CACHE_PER_ROLE; return $block; case 'view': if (arg(0) == 'node' && is_numeric(arg(1))) { $node = node_load(arg(1)); } $current_bid = empty($node->book['bid']) ? 0 : $node->book['bid']; $mode = variable_get('book_block_mode', 'all pages'); if ($mode == 'all pages') { $block['subject'] = t('Book navigation'); $book_menus = array(); $pseudo_tree = array(0 => array('below' => FALSE)); foreach (book_get_books() as $book) { if ($book['bid'] == $current_bid) { // If the current page is a node associated with a book, the menu // needs to be retrieved. $book_menus[] = menu_tree_output(menu_tree_all_data($node->book['menu_name'], $node->book)); } else { // Since we know we will only display a link to the top node, there // is no reason to run an additional menu tree query for each book. $book['in_active_trail'] = FALSE; $pseudo_tree[0]['link'] = $book; $book_menus[] = menu_tree_output($pseudo_tree); } } $block['content'] = theme('book_all_books_block', $book_menus); } elseif ($current_bid) { // Only display this block when the user is browsing a book. $title = db_result(db_query(db_rewrite_sql('SELECT n.title FROM {node} n WHERE n.nid = %d'), $node->book['bid'])); // Only show the block if the user has view access for the top-level node. if ($title) { $tree = menu_tree_all_data($node->book['menu_name'], $node->book); // There should only be one element at the top level. $data = array_shift($tree); $block['subject'] = theme('book_title_link', $data['link']); $block['content'] = ($data['below']) ? menu_tree_output($data['below']) : ''; } } return $block; case 'configure': $options = array( 'all pages' => t('Show block on all pages'), 'book pages' => t('Show block only on book pages'), ); $form['book_block_mode'] = array( '#type' => 'radios', '#title' => t('Book navigation block display'), '#options' => $options, '#default_value' => variable_get('book_block_mode', 'all pages'), '#description' => t("If Show block on all pages is selected, the block will contain the automatically generated menus for all of the site's books. If Show block only on book pages is selected, the block will contain only the one menu corresponding to the current page's book. In this case, if the current page is not in a book, no block will be displayed. The Page specific visibility settings or other visibility settings can be used in addition to selectively display this block."), ); return $form; case 'save': variable_set('book_block_mode', $edit['book_block_mode']); break; } } /** * Generate the HTML output for the block showing all book menus. * * @ingroup themeable */ function theme_book_all_books_block($book_menus) { $output = ''; foreach ($book_menus as $menu) { $output .= '
\n"; } return $output; } /** * Generate the HTML output for a link to a book title when used as a block title. * * @ingroup themeable */ function theme_book_title_link($link) { $link['options']['attributes']['class'] = 'book-title'; return l($link['title'], $link['href'], $link['options']); } /** * Returns an array of all books. * * This list may be used for generating a list of all the books, or for building * the options for a form select. */ function book_get_books() { static $all_books; if (!isset($all_books)) { $all_books = array(); $result = db_query("SELECT DISTINCT(bid) FROM {book}"); $nids = array(); while ($book = db_fetch_array($result)) { $nids[] = $book['bid']; } if ($nids) { $result2 = db_query(db_rewrite_sql("SELECT n.type, n.title, b.*, ml.* FROM {book} b INNER JOIN {node} n on b.nid = n.nid INNER JOIN {menu_links} ml ON b.mlid = ml.mlid WHERE n.nid IN (". implode(',', $nids) .") AND n.status = 1 ORDER BY ml.weight, ml.link_title")); while ($link = db_fetch_array($result2)) { $link['href'] = $link['link_path']; $link['options'] = unserialize($link['options']); $all_books[] = $link; } } } return $all_books; } /** * Implementation of hook_form_alter(). Adds the book fieldset to the node form. * * @see book_pick_book_submit() * @see book_submit() */ function book_form_alter(&$form, $form_state, $form_id) { if (isset($form['type']) && isset($form['#node']) && $form['type']['#value'] .'_node_form' == $form_id) { // Add elements to the node form $node = $form['#node']; $access = user_access('administer book outlines'); if (!$access) { if (user_access('add content to books') && ((!empty($node->book['mlid']) && !empty($node->nid)) || book_type_is_allowed($node->type))) { // Already in the book hierarchy or this node type is allowed $access = TRUE; } } if ($access) { _book_add_form_elements($form, $node); $form['book']['pick-book'] = array( '#type' => 'submit', '#value' => t('Change book (update list of parents)'), // Submit the node form so the parent select options get updated. // This is typically only used when JS is disabled. Since the parent options // won't be changed via AJAX, a button is provided in the node form to submit // the form and generate options in the parent select corresponding to the // selected book. This is similar to what happens during a node preview. '#submit' => array('node_form_submit_build_node'), '#weight' => 20, ); } } } /** * Build the parent selection form element for the node form or outline tab * * This function is also called when generating a new set of options during the * AJAX callback, so an array is returned that can be used to replace an existing * form element. */ function _book_parent_select($book_link) { // Offer a message or a drop-down to choose a different parent page. $form = array( '#type' => 'hidden', '#value' => -1, '#prefix' => ''. t('%title is part of a book outline, and has associated child pages. If you proceed with deletion, the child pages will be relocated automatically.', array('%title' => $node->title)) .'
', '#weight' => -10, ); } } /** * Return an array with default values for a book link. */ 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()); } /** * Prepares the links to the children of the page and the previous/up/next navigation. * * These navigation elements are added to the content of a node in the book * outline when it is viewed as a page and in similar contexts. * * @ingroup themeable */ function theme_book_navigation($book_link) { $output = ''; $links = ''; if ($book_link['mlid']) { $tree = book_children($book_link); if ($prev = book_prev($book_link)) { drupal_add_link(array('rel' => 'prev', 'href' => url($prev['href']))); $links .= l(t('‹ ') . $prev['title'], $prev['href'], array('attributes' => array('class' => 'page-previous', 'title' => t('Go to previous page')))); } if ($book_link['plid'] && $parent = book_link_load($book_link['plid'])) { drupal_add_link(array('rel' => 'up', 'href' => url($parent['href']))); $links .= l(t('up'), $parent['href'], array('attributes' => array('class' => 'page-up', 'title' => t('Go to parent page')))); } if ($next = book_next($book_link)) { drupal_add_link(array('rel' => 'next', 'href' => url($next['href']))); $links .= l($next['title'] . t(' ›'), $next['href'], array('attributes' => array('class' => 'page-next', 'title' => t('Go to next page')))); } if (isset($tree) || isset($links)) { $output = ' '; } } return $output; } /** * A recursive helper function for book_toc(). */ function _book_toc_recurse($tree, $indent, &$toc, $exclude, $depth_limit) { foreach ($tree as $data) { if ($data['link']['depth'] > $depth_limit) { // Don't iterate through any links on this level. break; } if (!in_array($data['link']['mlid'], $exclude)) { $toc[$data['link']['mlid']] = $indent .' '. truncate_utf8($data['link']['title'], 30, TRUE, TRUE); if ($data['below']) { _book_toc_recurse($data['below'], $indent .'--', $toc, $exclude, $depth_limit); } } } } /** * Returns an array of book pages in table of contents order. * * @param $bid * The ID of the book whose pages are to be listed. * @param $exclude * Optional array of mlid values. Any link whose mlid is in this array * will be excluded (along with its children). * @param $depth_limit * Any link deeper than this value will be excluded (along with its children). * @return * An array of mlid, title pairs for use as options for selecting a book page. */ function book_toc($bid, $exclude = array(), $depth_limit) { $tree = menu_tree_all_data(book_menu_name($bid)); $toc = array(); _book_toc_recurse($tree, '', $toc, $exclude, $depth_limit); return $toc; } /** * Traverse the book tree to build printable or exportable output. * * During the traversal, the $visit_pre() callback is applied to each * node, and is called recursively for each child of the node (in weight, * title order). Finally, the output of the $visit_post() callback is * appended before returning the generated output. * * @param $tree * A subtree of the book menu hierarchy, rooted at the current page. * @param $visit_pre * A function callback to be called upon visiting a node in the tree. * @param $visit_post * A function callback to be called after visiting a node in the tree, * but before recursively visiting children. * @return * The output generated in visiting each node. */ function book_export_traverse($tree, $visit_pre, $visit_post) { $output = ''; foreach ($tree as $data) { // Note- access checking is already performed when building the tree. $node = node_load($data['link']['nid'], FALSE); if ($node) { $depth = $node->book['depth']; if (function_exists($visit_pre)) { $output .= call_user_func($visit_pre, $node, $depth); } else { // Use the default function. $output .= book_node_visitor_html_pre($node, $depth); } if ($data['below']) { $output .= book_export_traverse($data['below'], $visit_pre, $visit_post); } if (function_exists($visit_post)) { $output .= call_user_func($visit_post, $node, $depth); } else { // Use the default function. $output .= book_node_visitor_html_post($node, $depth); } } } return $output; } /** * Generates printer-friendly HTML for a node. * * This function is a 'pre-node' visitor function. * * @see book_export_traverse(). * * @param $node * The node to generate output for. * @param $depth * The depth of the given node in the hierarchy. This * is used only for generating output. * @return * The HTML generated for the given node. */ function book_node_visitor_html_pre($node, $depth) { $node->build_mode = NODE_BUILD_PRINT; $node = node_build_content($node, FALSE, FALSE); $output = "'. t('The book module is suited for creating structured, multi-page hypertexts such as site resource guides, manuals, and Frequently Asked Questions (FAQs). It permits a document to have chapters, sections, subsections, etc. Authors with suitable permissions can add pages to a collaborative book, placing them into the existing document by adding them to a table of contents menu.') .'
'; $output .= ''. t('Pages in the book hierarchy have navigation elements at the bottom of the page for moving through the text. These link to the previous and next pages in the book, as well as a link labeled up, leading to the level above in the structure. More comprehensive navigation may be provided by enabling the book navigation block on the block administration page.', array('@admin-block' => url('admin/build/block'))) .'
'; $output .= ''. t('Users can select the printer-friendly version link visible at the bottom of a book page to generate a printer-friendly display of the page and all of its subsections. ') .'
'; $output .= ''. t("Users with the administer book outlines permission can add content of any type to a book, placing it into the existing book structure through the edit form or through the interface that's available by clicking on the outline tab while viewing that post.", array('%book' => node_get_types('name', 'book'))) .'
'; $output .= ''. t('Administrators can view a list of all books on the book administration page. In this list there is a link to an outline page for each book, from which is it possible to change the titles of sections, or to change their weight, thus reordering sections.', array('@admin-node-book' => url('admin/content/book'))) .'
'; $output .= ''. t('For more information please read the configuration and customization handbook Book page.', array('@book' => 'http://drupal.org/handbook/modules/book/')) .'
'; return $output; case 'admin/content/book': return ''. t('The book module offers a means to organize a collection of related posts, collectively known as a book. When viewed, these posts automatically display links to adjacent book pages, providing a simple navigation system for creating and reviewing structured content.') .'
'; case 'node/%/outline': return ''. t('The outline feature allows you to include posts in the book hierarchy, as well as move them within the hierarchy or to reorder an entire book.', array('@book' => url('book'), '@book-admin' => url('admin/content/book'))) .'
'; } } /** * Like menu_link_load(), but adds additional data from the {book} table. * * Do not call when loading a node, since this function may call node_load(). */ function book_link_load($mlid) { if ($item = db_fetch_array(db_query("SELECT * FROM {menu_links} ml INNER JOIN {book} b ON b.mlid = ml.mlid LEFT JOIN {menu_router} m ON m.path = ml.router_path WHERE ml.mlid = %d", $mlid))) { _menu_link_translate($item); return $item; } return FALSE; } /** * Get the data representing a subtree of the book hierarchy. * * The root of the subtree will be the link passed as a parameter, so the * returned tree will contain this item and all its descendents in the menu tree. * * @param $item * A fully loaded menu link. * @return * An subtree of menu links in an array, in the order they should be rendered. */ function book_menu_subtree_data($item) { static $tree = array(); $cid = 'links:'. $item['menu_name'] .':subtree:'. $item['mlid']; if (!isset($tree[$cid])) { $cache = cache_get($cid, 'cache_menu'); if ($cache && isset($cache->data)) { $data = $cache->data; } else { $match = array("menu_name = '%s'"); $args = array($item['menu_name']); $i = 1; while ($i <= MENU_MAX_DEPTH && $item["p$i"]) { $match[] = "p$i = %d"; $args[] = $item["p$i"]; $i++; } $sql = " SELECT b.*, m.load_functions, m.to_arg_functions, m.access_callback, m.access_arguments, m.page_callback, m.page_arguments, m.title, m.title_callback, m.title_arguments, m.type, ml.* FROM {menu_links} ml INNER JOIN {menu_router} m ON m.path = ml.router_path INNER JOIN {book} b ON ml.mlid = b.mlid WHERE ". implode(' AND ', $match) ." ORDER BY p1 ASC, p2 ASC, p3 ASC, p4 ASC, p5 ASC, p6 ASC, p7 ASC, p8 ASC, p9 ASC"; $data['tree'] = menu_tree_data(db_query($sql, $args), array(), $item['depth']); $data['node_links'] = array(); menu_tree_collect_node_links($data['tree'], $data['node_links']); // Cache the data. cache_set($cid, $data, 'cache_menu'); } // Check access for the current user to each item in the tree. menu_tree_check_access($data['tree'], $data['node_links']); $tree[$cid] = $data['tree']; } return $tree[$cid]; }