2001-03-24 16:36:13 +00:00
<?php
2001-10-20 18:57:09 +00:00
// $Id$
2001-03-24 16:36:13 +00:00
2004-08-21 06:42:38 +00:00
/**
* @file
2008-10-13 19:59:41 +00:00
* Allows users to create and organize related content in an outline.
2004-08-21 06:42:38 +00:00
*/
2009-11-26 06:42:42 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_help().
2009-11-26 06:42:42 +00:00
*/
function book_help($path, $arg) {
switch ($path) {
case 'admin/help#book':
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Book module is used for creating structured, multi-page content, such as site resource guides, manuals, and wikis. It allows you to create content that has chapters, sections, subsections, or any similarly tiered structure. For more information, see the online handbook entry for <a href="@book">Book module</a>.', array('@book' => 'http://drupal.org/handbook/modules/book/')) . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Adding and managing book content') . '</dt>';
$output .= '<dd>' . t('You can assign separate permissions for <em>creating</em>, <em>editing</em>, and <em>deleting</em> book content, as well as <em>adding content to books</em>, and <em>creating new books</em>. Users with the <em>administer book outlines</em> permission can add <em>any</em> type of content to a book by selecting the appropriate book outline while editing the content. They can also view a list of all books, and edit and rearrange section titles on the <a href="@admin-book">Book administration page</a>.', array('@admin-book' => url('admin/content/book'))) . '</dd>';
$output .= '<dt>' . t('Book navigation') . '</dt>';
$output .= '<dd>' . t("Book pages have a default book-specific navigation block. This navigation block contains links that lead to the previous and next pages in the book, and to the level above the current page in the book's structure. This block can be enabled on the <a href='@admin-block'>Blocks administration page</a>. For book pages to show up in the book navigation, they must be added to a book outline.", array('@admin-block' => url('admin/structure/block'))) . '</dd>';
$output .= '<dt>' . t('Collaboration') . '</dt>';
$output .= '<dd>' . t('Books can be created collaboratively, as they allow users with appropriate permissions to add pages into existing books, and add those pages to a custom table of contents menu.') . '</dd>';
$output .= '<dt>' . t('Printing books') . '</dt>';
$output .= '<dd>' . t("Users with the <em>access printer-friendly version</em> permission can select the <em>printer-friendly version</em> link visible at the bottom of a book page's content to generate a printer-friendly display of the page and all of its subsections.") . '</dd>';
$output .= '</dl>';
return $output;
case 'admin/content/book':
return '<p>' . t('The book module offers a means to organize a collection of related content pages, collectively known as a book. When viewed, this content automatically displays links to adjacent book pages, providing a simple navigation system for creating and reviewing structured content.') . '</p>';
case 'node/%/outline':
return '<p>' . t('The outline feature allows you to include pages in the <a href="@book">Book hierarchy</a>, as well as move them within the hierarchy or to <a href="@book-admin">reorder an entire book</a>.', array('@book' => url('book'), '@book-admin' => url('admin/content/book'))) . '</p>';
}
}
2007-04-06 13:27:23 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_theme().
2007-04-06 13:27:23 +00:00
*/
function book_theme() {
return array(
'book_navigation' => array(
2009-10-23 22:24:19 +00:00
'variables' => array('book_link' => NULL),
2007-11-04 14:29:09 +00:00
'template' => 'book-navigation',
2007-04-06 13:27:23 +00:00
),
'book_export_html' => array(
2009-10-23 22:24:19 +00:00
'variables' => array('title' => NULL, 'contents' => NULL, 'depth' => NULL),
2007-11-04 14:29:09 +00:00
'template' => 'book-export-html',
2007-04-06 13:27:23 +00:00
),
'book_admin_table' => array(
2009-10-23 22:24:19 +00:00
'render element' => 'form',
2007-04-06 13:27:23 +00:00
),
2007-07-30 18:20:21 +00:00
'book_title_link' => array(
2009-10-23 22:24:19 +00:00
'variables' => array('link' => NULL),
2007-07-30 18:20:21 +00:00
),
'book_all_books_block' => array(
2009-10-23 22:24:19 +00:00
'render element' => 'book_menus',
2007-11-04 14:29:09 +00:00
'template' => 'book-all-books-block',
),
'book_node_export_html' => array(
2009-10-23 22:24:19 +00:00
'variables' => array('node' => NULL, 'children' => NULL),
2007-11-04 14:29:09 +00:00
'template' => 'book-node-export-html',
2007-07-30 18:20:21 +00:00
),
2007-04-06 13:27:23 +00:00
);
}
2004-05-09 19:28:43 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_permission().
2004-05-09 19:28:43 +00:00
*/
2009-07-05 18:00:11 +00:00
function book_permission() {
2008-02-20 13:46:43 +00:00
return array(
2008-10-09 15:15:55 +00:00
'administer book outlines' => array(
'title' => t('Administer book outlines'),
),
'create new books' => array(
'title' => t('Create new books'),
),
'add content to books' => array(
2009-12-01 13:14:43 +00:00
'title' => t('Add content and child pages to books'),
2008-10-09 15:15:55 +00:00
),
'access printer-friendly version' => array(
2009-12-01 13:14:43 +00:00
'title' => t('View printer-friendly books'),
2008-10-09 15:15:55 +00:00
'description' => t('View a book page and all of its sub-pages as a single document for ease of printing. Can be performance heavy.'),
),
2008-02-20 13:46:43 +00:00
);
2001-11-01 17:04:20 +00:00
}
2004-04-21 13:56:38 +00:00
/**
2009-01-26 14:08:44 +00:00
* Inject links into $node as needed.
2004-04-21 13:56:38 +00:00
*/
2009-11-08 10:02:41 +00:00
function book_node_view_link($node, $build_mode) {
2003-04-21 14:55:03 +00:00
$links = array();
2009-01-26 14:08:44 +00:00
2008-12-16 22:05:51 +00:00
if (isset($node->book['depth'])) {
2009-06-22 09:10:07 +00:00
if ($build_mode == 'full') {
2007-07-30 18:20:21 +00:00
$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) {
2006-05-18 14:58:57 +00:00
$links['book_add_child'] = array(
2006-10-22 08:28:47 +00:00
'title' => t('Add child page'),
2009-03-30 05:40:44 +00:00
'href' => 'node/add/' . str_replace('_', '-', $child_type),
2009-09-29 15:31:17 +00:00
'query' => array('parent' => $node->book['mlid']),
2006-05-18 14:58:57 +00:00
);
2004-11-15 12:49:59 +00:00
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if (user_access('access printer-friendly version')) {
2006-05-18 14:58:57 +00:00
$links['book_printer'] = array(
2006-10-22 08:28:47 +00:00
'title' => t('Printer-friendly version'),
2008-04-14 17:48:46 +00:00
'href' => 'book/export/html/' . $node->nid,
2006-07-04 08:59:05 +00:00
'attributes' => array('title' => t('Show a printer-friendly version of this book page and its sub-pages.'))
2006-05-18 14:58:57 +00:00
);
2005-10-08 14:48:33 +00:00
}
2003-05-13 19:05:02 +00:00
}
2001-12-02 21:05:31 +00:00
}
2008-05-15 21:19:24 +00:00
2008-12-16 22:05:51 +00:00
if (!empty($links)) {
$node->content['links']['book'] = array(
2009-07-02 04:27:23 +00:00
'#theme' => 'links',
'#links' => $links,
2009-08-22 14:34:23 +00:00
'#attributes' => array('class' => array('links', 'inline')),
2008-12-16 22:05:51 +00:00
);
}
2001-03-25 10:57:01 +00:00
}
2004-06-18 15:04:37 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_menu().
2004-06-18 15:04:37 +00:00
*/
2007-01-24 14:48:36 +00:00
function book_menu() {
$items['admin/content/book'] = array(
2007-04-30 17:03:29 +00:00
'title' => 'Books',
2009-09-22 15:26:46 +00:00
'description' => "Manage your site's book outlines.",
2007-07-30 18:20:21 +00:00
'page callback' => 'book_admin_overview',
'access arguments' => array('administer book outlines'),
2009-07-30 19:24:21 +00:00
'type' => MENU_LOCAL_TASK,
2009-08-24 00:14:23 +00:00
'file' => 'book.admin.inc',
2007-01-24 14:48:36 +00:00
);
$items['admin/content/book/list'] = array(
2007-04-30 17:03:29 +00:00
'title' => 'List',
2007-01-24 14:48:36 +00:00
'type' => MENU_DEFAULT_LOCAL_TASK,
);
2007-07-30 18:20:21 +00:00
$items['admin/content/book/settings'] = array(
'title' => 'Settings',
2007-01-24 14:48:36 +00:00
'page callback' => 'drupal_get_form',
2007-07-30 18:20:21 +00:00
'page arguments' => array('book_admin_settings'),
'access arguments' => array('administer site configuration'),
2007-01-24 14:48:36 +00:00
'type' => MENU_LOCAL_TASK,
'weight' => 8,
2009-08-24 00:14:23 +00:00
'file' => 'book.admin.inc',
2007-01-24 14:48:36 +00:00
);
2007-07-30 18:20:21 +00:00
$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,
2009-08-24 00:14:23 +00:00
'file' => 'book.admin.inc',
2007-07-30 18:20:21 +00:00
);
2007-01-24 14:48:36 +00:00
$items['book'] = array(
2007-04-30 17:03:29 +00:00
'title' => 'Books',
2007-01-24 14:48:36 +00:00
'page callback' => 'book_render',
'access arguments' => array('access content'),
'type' => MENU_SUGGESTED_ITEM,
2009-08-24 00:14:23 +00:00
'file' => 'book.pages.inc',
2007-01-24 14:48:36 +00:00
);
$items['book/export/%/%'] = array(
'page callback' => 'book_export',
'page arguments' => array(2, 3),
2007-07-30 18:20:21 +00:00
'access arguments' => array('access printer-friendly version'),
2007-01-24 14:48:36 +00:00
'type' => MENU_CALLBACK,
2009-08-24 00:14:23 +00:00
'file' => 'book.pages.inc',
2007-01-24 14:48:36 +00:00
);
2007-02-11 09:30:51 +00:00
$items['node/%node/outline'] = array(
2007-04-30 17:03:29 +00:00
'title' => 'Outline',
2007-07-30 18:20:21 +00:00
'page callback' => 'book_outline',
'page arguments' => array(1),
2007-01-24 14:48:36 +00:00
'access callback' => '_book_outline_access',
'access arguments' => array(1),
'type' => MENU_LOCAL_TASK,
'weight' => 2,
2009-08-24 00:14:23 +00:00
'file' => 'book.pages.inc',
2007-01-24 14:48:36 +00:00
);
2007-07-30 18:20:21 +00:00
$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,
2009-08-24 00:14:23 +00:00
'file' => 'book.pages.inc',
2007-07-30 18:20:21 +00:00
);
2007-10-15 19:33:27 +00:00
$items['book/js/form'] = array(
2007-07-30 18:20:21 +00:00
'page callback' => 'book_form_update',
2009-10-15 14:07:30 +00:00
'delivery callback' => 'ajax_deliver',
2007-07-30 18:20:21 +00:00
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
2009-08-24 00:14:23 +00:00
'file' => 'book.pages.inc',
2007-07-30 18:20:21 +00:00
);
2008-05-15 21:19:24 +00:00
2004-06-18 15:04:37 +00:00
return $items;
}
2007-07-30 18:20:21 +00:00
/**
* Menu item access callback - determine if the outline tab is accessible.
*/
2009-11-08 10:02:41 +00:00
function _book_outline_access($node) {
2007-07-30 18:20:21 +00:00
return user_access('administer book outlines') && node_access('view', $node);
}
/**
* Menu item access callback - determine if the user can remove nodes from the outline.
*/
2009-11-08 10:02:41 +00:00
function _book_outline_remove_access($node) {
2007-07-30 18:20:21 +00:00
return isset($node->book) && ($node->book['bid'] != $node->nid) && _book_outline_access($node);
2007-01-24 14:48:36 +00:00
}
2007-07-30 18:20:21 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_init().
2007-07-30 18:20:21 +00:00
*/
2007-01-24 14:48:36 +00:00
function book_init() {
2008-04-14 17:48:46 +00:00
drupal_add_css(drupal_get_path('module', 'book') . '/book.css');
2007-01-24 14:48:36 +00:00
}
2009-06-22 09:10:07 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_field_build_modes().
2009-06-22 09:10:07 +00:00
*/
function book_field_build_modes($obj_type) {
$modes = array();
if ($obj_type == 'node') {
$modes = array(
'print' => t('Print'),
);
}
return $modes;
}
2004-05-09 19:28:43 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_block_info().
2008-12-16 23:57:33 +00:00
*/
2009-08-29 05:46:04 +00:00
function book_block_info() {
2008-12-16 23:57:33 +00:00
$block = array();
$block['navigation']['info'] = t('Book navigation');
2009-08-31 17:06:10 +00:00
$block['navigation']['cache'] = DRUPAL_CACHE_PER_PAGE | DRUPAL_CACHE_PER_ROLE;
2008-12-16 23:57:33 +00:00
return $block;
}
/**
2009-12-04 16:49:48 +00:00
* Implements hook_block_view().
2004-05-09 19:28:43 +00:00
*
- Patch #5347 by JonBob:
Here's a new patch that unifies the node/52 and book/view/52 paths for nodes. It involves a small change to hook_view(), which is discussed first:
Currently hook_view() expects node modules to return a themed node. However, each module does this the same way; they modify $node as necessary, then call theme('node', $node) and return the result. We can refactor this so that the calling function node_view() calls theme('node') instead. By doing this, it becomes possible for hook_nodeapi('view') to be called after hook_view() where the node contents are filtered, and before theme('node') where the body is enclosed in other HTML. This way the book module can insert its navigation into the body right before the theming.
Advantages of this refactoring:
- I can use it for book.module to remove the extra viewing path.
- The function of hook_nodeapi('view') becomes more like hook_view(), as neither will expect a return value.
- We more closely follow the flow of other nodeapi calls, which usually directly follow their corresponding specific node type hooks (instead of preceding them).
- The attachment.module people could use it to append their attachments in a list after the node.
- Gabor could use it instead of his filter perversion for his "articles in a series" module.
- A little less code in each view hook.
- The content hook is no longer needed, so that means even less code.
Disadvantages:
- Any modules written to use nodeapi('view') could be affected (but these would all be post-4.4 modules).
- Implementations of hook_view() would need to be updated (but return values would be ignored, so most would work without updates anyway).
Now the patch takes advantage of this API shift to inject its navigation at the end of all book nodes, regardless of the viewing path. In fact, since the paths become identical, I've removed the book/view handler entirely. We should probably provide an .htaccess rewrite for this (one is still needed for node/view/nn anyway). At the same time, there is a check in book_block() that shows the block appropriately on these pages.
2004-07-30 13:37:26 +00:00
* Displays the book table of contents in a block when the current page is a
* single-node view of a book node.
2004-05-09 19:28:43 +00:00
*/
2008-12-16 23:57:33 +00:00
function book_block_view($delta = '') {
- Patch #5347 by JonBob:
Here's a new patch that unifies the node/52 and book/view/52 paths for nodes. It involves a small change to hook_view(), which is discussed first:
Currently hook_view() expects node modules to return a themed node. However, each module does this the same way; they modify $node as necessary, then call theme('node', $node) and return the result. We can refactor this so that the calling function node_view() calls theme('node') instead. By doing this, it becomes possible for hook_nodeapi('view') to be called after hook_view() where the node contents are filtered, and before theme('node') where the body is enclosed in other HTML. This way the book module can insert its navigation into the body right before the theming.
Advantages of this refactoring:
- I can use it for book.module to remove the extra viewing path.
- The function of hook_nodeapi('view') becomes more like hook_view(), as neither will expect a return value.
- We more closely follow the flow of other nodeapi calls, which usually directly follow their corresponding specific node type hooks (instead of preceding them).
- The attachment.module people could use it to append their attachments in a list after the node.
- Gabor could use it instead of his filter perversion for his "articles in a series" module.
- A little less code in each view hook.
- The content hook is no longer needed, so that means even less code.
Disadvantages:
- Any modules written to use nodeapi('view') could be affected (but these would all be post-4.4 modules).
- Implementations of hook_view() would need to be updated (but return values would be ignored, so most would work without updates anyway).
Now the patch takes advantage of this API shift to inject its navigation at the end of all book nodes, regardless of the viewing path. In fact, since the paths become identical, I've removed the book/view handler entirely. We should probably provide an .htaccess rewrite for this (one is still needed for node/view/nn anyway). At the same time, there is a check in book_block() that shows the block appropriately on these pages.
2004-07-30 13:37:26 +00:00
$block = array();
2008-12-16 23:57:33 +00:00
$current_bid = 0;
if ($node = menu_get_object()) {
$current_bid = empty($node->book['bid']) ? 0 : $node->book['bid'];
}
2008-05-15 21:19:24 +00:00
2008-12-16 23:57:33 +00:00
if (variable_get('book_block_mode', 'all pages') == 'all pages') {
$block['subject'] = t('Book navigation');
$book_menus = array();
$pseudo_tree = array(0 => array('below' => FALSE));
foreach (book_get_books() as $book_id => $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[$book_id] = menu_tree_output(menu_tree_all_data($node->book['menu_name'], $node->book));
- Patch #5347 by JonBob:
Here's a new patch that unifies the node/52 and book/view/52 paths for nodes. It involves a small change to hook_view(), which is discussed first:
Currently hook_view() expects node modules to return a themed node. However, each module does this the same way; they modify $node as necessary, then call theme('node', $node) and return the result. We can refactor this so that the calling function node_view() calls theme('node') instead. By doing this, it becomes possible for hook_nodeapi('view') to be called after hook_view() where the node contents are filtered, and before theme('node') where the body is enclosed in other HTML. This way the book module can insert its navigation into the body right before the theming.
Advantages of this refactoring:
- I can use it for book.module to remove the extra viewing path.
- The function of hook_nodeapi('view') becomes more like hook_view(), as neither will expect a return value.
- We more closely follow the flow of other nodeapi calls, which usually directly follow their corresponding specific node type hooks (instead of preceding them).
- The attachment.module people could use it to append their attachments in a list after the node.
- Gabor could use it instead of his filter perversion for his "articles in a series" module.
- A little less code in each view hook.
- The content hook is no longer needed, so that means even less code.
Disadvantages:
- Any modules written to use nodeapi('view') could be affected (but these would all be post-4.4 modules).
- Implementations of hook_view() would need to be updated (but return values would be ignored, so most would work without updates anyway).
Now the patch takes advantage of this API shift to inject its navigation at the end of all book nodes, regardless of the viewing path. In fact, since the paths become identical, I've removed the book/view handler entirely. We should probably provide an .htaccess rewrite for this (one is still needed for node/view/nn anyway). At the same time, there is a check in book_block() that shows the block appropriately on these pages.
2004-07-30 13:37:26 +00:00
}
2008-12-16 23:57:33 +00:00
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[$book_id] = menu_tree_output($pseudo_tree);
2007-07-30 18:20:21 +00:00
}
2008-12-16 23:57:33 +00:00
}
2009-09-18 10:54:20 +00:00
$book_menus['#theme'] = 'book_all_books_block';
$block['content'] = $book_menus;
2008-12-16 23:57:33 +00:00
}
elseif ($current_bid) {
// Only display this block when the user is browsing a book.
$select = db_select('node');
$select->addField('node', 'title');
$select->condition('nid', $node->book['bid']);
$select->addTag('node_access');
$title = $select->execute()->fetchField();
// 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);
2009-10-09 01:00:08 +00:00
$block['subject'] = theme('book_title_link', array('link' => $data['link']));
2008-12-16 23:57:33 +00:00
$block['content'] = ($data['below']) ? menu_tree_output($data['below']) : '';
}
}
2008-05-15 21:19:24 +00:00
2008-12-16 23:57:33 +00:00
return $block;
}
2008-05-15 21:19:24 +00:00
2008-12-16 23:57:33 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_block_configure().
2008-12-16 23:57:33 +00:00
*/
function book_block_configure($delta = '') {
$block = array();
$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 <em>Show block on all pages</em> is selected, the block will contain the automatically generated menus for all of the site's books. If <em>Show block only on book pages</em> 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 <em>Page specific visibility settings</em> or other visibility settings can be used in addition to selectively display this block."),
);
2008-05-15 21:19:24 +00:00
2008-12-16 23:57:33 +00:00
return $form;
}
2008-05-15 21:19:24 +00:00
2008-12-16 23:57:33 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_block_save().
2008-12-16 23:57:33 +00:00
*/
function book_block_save($delta = '', $edit = array()) {
$block = array();
variable_set('book_block_mode', $edit['book_block_mode']);
2007-07-30 18:20:21 +00:00
}
2004-01-14 19:26:41 +00:00
2006-08-31 21:58:36 +00:00
/**
2007-07-30 18:20:21 +00:00
* Generate the HTML output for a link to a book title when used as a block title.
*
* @ingroup themeable
2006-08-31 21:58:36 +00:00
*/
2009-10-09 01:00:08 +00:00
function theme_book_title_link($variables) {
$link = $variables['link'];
2009-08-22 14:34:23 +00:00
$link['options']['attributes']['class'] = array('book-title');
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
return l($link['title'], $link['href'], $link['options']);
2001-11-01 11:00:51 +00:00
}
2001-06-29 22:08:57 +00:00
2004-05-09 19:28:43 +00:00
/**
2007-07-30 18:20:21 +00:00
* 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.
2004-05-09 19:28:43 +00:00
*/
2007-07-30 18:20:21 +00:00
function book_get_books() {
2009-06-07 02:32:57 +00:00
$all_books = &drupal_static(__FUNCTION__);
2007-07-30 18:20:21 +00:00
if (!isset($all_books)) {
$all_books = array();
2008-11-16 15:02:45 +00:00
$nids = db_query("SELECT DISTINCT(bid) FROM {book}")->fetchCol();
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if ($nids) {
2008-11-16 15:02:45 +00:00
$query = db_select('book', 'b', array('fetch' => PDO::FETCH_ASSOC));
$node_alias = $query->join('node', 'n', 'b.nid = n.nid');
$menu_links_alias = $query->join('menu_links', 'ml', 'b.mlid = ml.mlid');
$query->addField('n', 'type', 'type');
$query->addField('n', 'title', 'title');
$query->fields('b');
$query->fields($menu_links_alias);
$query->condition('n.nid', $nids, 'IN');
$query->condition('n.status', 1);
$query->orderBy('ml.weight');
$query->orderBy('ml.link_title');
$query->addTag('node_access');
$result2 = $query->execute();
foreach ($result2 as $link) {
2007-07-30 18:20:21 +00:00
$link['href'] = $link['link_path'];
$link['options'] = unserialize($link['options']);
2007-11-04 14:29:09 +00:00
$all_books[$link['bid']] = $link;
2007-07-30 18:20:21 +00:00
}
}
2006-08-31 21:58:36 +00:00
}
2008-11-16 19:41:14 +00:00
2007-07-30 18:20:21 +00:00
return $all_books;
2006-08-31 21:58:36 +00:00
}
2006-08-29 18:43:26 +00:00
2007-07-30 18:20:21 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_form_alter().
2008-05-15 21:19:24 +00:00
*
* Adds the book fieldset to the node form.
2007-07-30 18:20:21 +00:00
*
* @see book_pick_book_submit()
* @see book_submit()
*/
2009-11-18 18:51:11 +00:00
function book_form_alter(&$form, &$form_state, $form_id) {
2008-09-27 20:37:01 +00:00
if (!empty($form['#node_edit_form'])) {
2008-05-15 21:19:24 +00:00
// Add elements to the node form.
2007-07-30 18:20:21 +00:00
$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))) {
2008-05-15 21:19:24 +00:00
// Already in the book hierarchy, or this node type is allowed.
2007-07-30 18:20:21 +00:00
$access = TRUE;
}
}
if ($access) {
2009-11-18 18:51:11 +00:00
_book_add_form_elements($form, $form_state, $node);
2007-07-30 18:20:21 +00:00
$form['book']['pick-book'] = array(
'#type' => 'submit',
'#value' => t('Change book (update list of parents)'),
2007-08-09 11:01:00 +00:00
// Submit the node form so the parent select options get updated.
2008-05-15 21:19:24 +00:00
// This is typically only used when JS is disabled. Since the parent options
2007-08-09 11:01:00 +00:00
// 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
2008-05-15 21:19:24 +00:00
// selected book. This is similar to what happens during a node preview.
2007-08-09 11:01:00 +00:00
'#submit' => array('node_form_submit_build_node'),
2007-07-30 18:20:21 +00:00
'#weight' => 20,
);
}
2006-03-14 15:36:25 +00:00
}
2007-07-30 18:20:21 +00:00
}
2006-03-02 08:44:52 +00:00
2007-07-30 18:20:21 +00:00
/**
2008-05-15 21:19:24 +00:00
* Build the parent selection form element for the node form or outline tab.
2007-07-30 18:20:21 +00:00
*
* 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) {
2007-11-21 19:08:18 +00:00
if (variable_get('menu_override_parent_selector', FALSE)) {
return array();
}
2007-07-30 18:20:21 +00:00
// Offer a message or a drop-down to choose a different parent page.
$form = array(
'#type' => 'hidden',
'#value' => -1,
'#prefix' => '<div id="edit-book-plid-wrapper">',
'#suffix' => '</div>',
);
2005-08-30 15:22:29 +00:00
2007-07-30 18:20:21 +00:00
if ($book_link['nid'] === $book_link['bid']) {
// This is a book - at the top level.
if ($book_link['original_bid'] === $book_link['bid']) {
2008-04-14 17:48:46 +00:00
$form['#prefix'] .= '<em>' . t('This is the top-level page in this book.') . '</em>';
2007-07-30 18:20:21 +00:00
}
else {
2008-04-14 17:48:46 +00:00
$form['#prefix'] .= '<em>' . t('This will be the top-level page in this book.') . '</em>';
2007-07-30 18:20:21 +00:00
}
}
elseif (!$book_link['bid']) {
2008-04-14 17:48:46 +00:00
$form['#prefix'] .= '<em>' . t('No book selected.') . '</em>';
2006-08-31 21:58:36 +00:00
}
else {
2007-07-30 18:20:21 +00:00
$form = array(
'#type' => 'select',
'#title' => t('Parent item'),
'#default_value' => $book_link['plid'],
2007-11-26 16:36:44 +00:00
'#description' => t('The parent page in the book. The maximum depth for a book and all child pages is !maxdepth. Some pages in the selected book may not be available as parents if selecting them would exceed this limit.', array('!maxdepth' => MENU_MAX_DEPTH)),
2009-04-27 07:08:00 +00:00
'#options' => book_toc($book_link['bid'], $book_link['parent_depth_limit'], array($book_link['mlid'])),
2009-08-22 14:34:23 +00:00
'#attributes' => array('class' => array('book-title-select')),
2006-08-23 06:38:49 +00:00
);
2001-11-04 15:57:43 +00:00
}
2008-05-15 21:19:24 +00:00
2005-10-07 06:11:12 +00:00
return $form;
2001-11-04 15:57:43 +00:00
}
2004-05-09 19:28:43 +00:00
/**
2007-07-30 18:20:21 +00:00
* Build the common elements of the book form for the node and outline forms.
2004-05-09 19:28:43 +00:00
*/
2009-11-18 18:51:11 +00:00
function _book_add_form_elements(&$form, &$form_state, $node) {
2007-07-30 18:20:21 +00:00
// Need this for AJAX.
2009-11-18 18:51:11 +00:00
$form_state['cache'] = TRUE;
2007-07-30 18:20:21 +00:00
$form['book'] = array(
'#type' => 'fieldset',
'#title' => t('Book outline'),
'#weight' => 10,
'#collapsible' => TRUE,
'#collapsed' => TRUE,
2009-04-11 22:19:46 +00:00
'#group' => 'additional_settings',
2009-09-05 15:05:05 +00:00
'#attached' => array(
'js' => array(drupal_get_path('module', 'book') . '/book.js'),
),
2007-07-30 18:20:21 +00:00
'#tree' => TRUE,
2009-08-22 14:34:23 +00:00
'#attributes' => array('class' => array('book-outline-form')),
2006-03-02 08:44:52 +00:00
);
2007-08-20 17:54:35 +00:00
foreach (array('menu_name', 'mlid', 'nid', 'router_path', 'has_children', 'options', 'module', 'original_bid', 'parent_depth_limit') as $key) {
2007-07-30 18:20:21 +00:00
$form['book'][$key] = array(
'#type' => 'value',
'#value' => $node->book[$key],
);
}
$form['book']['plid'] = _book_parent_select($node->book);
$form['book']['weight'] = array(
'#type' => 'weight',
2006-03-02 08:44:52 +00:00
'#title' => t('Weight'),
2007-07-30 18:20:21 +00:00
'#default_value' => $node->book['weight'],
2006-03-02 08:44:52 +00:00
'#delta' => 15,
2007-07-30 18:20:21 +00:00
'#weight' => 5,
2006-03-02 08:44:52 +00:00
'#description' => t('Pages at a given level are ordered first by weight and then by title.'),
);
2007-07-30 18:20:21 +00:00
$options = array();
$nid = isset($node->nid) ? $node->nid : 'new';
2007-08-19 08:08:45 +00:00
2007-08-20 17:54:35 +00:00
if (isset($node->nid) && ($nid == $node->book['original_bid']) && ($node->book['parent_depth_limit'] == 0)) {
2007-08-16 12:47:34 +00:00
// This is the top level node in a maximum depth book and thus cannot be moved.
2009-12-02 19:26:23 +00:00
$options[$node->nid] = $node->title[LANGUAGE_NONE][0]['value'];
2007-08-16 12:47:34 +00:00
}
else {
foreach (book_get_books() as $book) {
$options[$book['nid']] = $book['title'];
}
}
2007-07-30 18:20:21 +00:00
if (user_access('create new books') && ($nid == 'new' || ($nid != $node->book['original_bid']))) {
// The node can become a new book, if it is not one already.
2008-04-14 17:48:46 +00:00
$options = array($nid => '<' . t('create a new book') . '>') + $options;
2007-07-30 18:20:21 +00:00
}
if (!$node->book['mlid']) {
2008-05-15 21:19:24 +00:00
// The node is not currently in the hierarchy.
2008-04-14 17:48:46 +00:00
$options = array(0 => '<' . t('none') . '>') + $options;
2007-07-30 18:20:21 +00:00
}
// Add a drop-down to select the destination book.
$form['book']['bid'] = array(
'#type' => 'select',
'#title' => t('Book'),
'#default_value' => $node->book['bid'],
'#options' => $options,
'#access' => (bool)$options,
'#description' => t('Your page will be a part of the selected book.'),
'#weight' => -5,
2009-08-22 14:34:23 +00:00
'#attributes' => array('class' => array('book-title-select')),
2009-08-17 07:12:16 +00:00
'#ajax' => array(
2007-10-15 19:33:27 +00:00
'path' => 'book/js/form',
'wrapper' => 'edit-book-plid-wrapper',
2009-08-17 07:12:16 +00:00
'effect' => 'fade',
'speed' => 'fast',
2007-10-15 19:33:27 +00:00
),
2006-03-02 08:44:52 +00:00
);
2007-07-30 18:20:21 +00:00
}
2001-12-06 17:33:05 +00:00
2004-05-09 19:28:43 +00:00
/**
2007-07-30 18:20:21 +00:00
* Common helper function to handles additions and updates to the book outline.
2006-04-17 20:48:26 +00:00
*
2007-07-30 18:20:21 +00:00
* Performs all additions and updates to the book outline through node addition,
* node editing, node deletion, or the outline tab.
*/
2009-11-08 10:02:41 +00:00
function _book_update_outline($node) {
2007-07-30 18:20:21 +00:00
if (empty($node->book['bid'])) {
return FALSE;
}
$new = empty($node->book['mlid']);
2008-04-14 17:48:46 +00:00
$node->book['link_path'] = 'node/' . $node->nid;
2009-12-02 19:26:23 +00:00
$node->book['link_title'] = $node->title[LANGUAGE_NONE][0]['value'];
2007-07-30 18:20:21 +00:00
$node->book['parent_mismatch'] = FALSE; // The normal case.
if ($node->book['bid'] == $node->nid) {
$node->book['plid'] = 0;
$node->book['menu_name'] = book_menu_name($node->nid);
}
else {
// Check in case the parent is not is this book; the book takes precedence.
if (!empty($node->book['plid'])) {
2008-11-16 15:02:45 +00:00
$parent = db_query("SELECT * FROM {book} WHERE mlid = :mlid", array(
':mlid' => $node->book['plid'],
))->fetchAssoc();
2007-07-30 18:20:21 +00:00
}
if (empty($node->book['plid']) || !$parent || $parent['bid'] != $node->book['bid']) {
2008-11-16 15:02:45 +00:00
$node->book['plid'] = db_query("SELECT mlid FROM {book} WHERE nid = :nid", array(
':nid' => $node->book['bid'],
))->fetchField();
2007-07-30 18:20:21 +00:00
$node->book['parent_mismatch'] = TRUE; // Likely when JS is disabled.
}
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if (menu_link_save($node->book)) {
if ($new) {
// Insert new.
2008-11-16 15:02:45 +00:00
db_insert('book')
->fields(array(
'nid' => $node->nid,
'mlid' => $node->book['mlid'],
'bid' => $node->book['bid'],
))
->execute();
2007-07-30 18:20:21 +00:00
}
else {
2008-11-16 15:02:45 +00:00
if ($node->book['bid'] != db_query("SELECT bid FROM {book} WHERE nid = :nid", array(
':nid' => $node->nid,
))->fetchField()) {
2007-07-30 18:20:21 +00:00
// Update the bid for this page and all children.
book_update_bid($node->book);
}
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
return TRUE;
}
2008-05-15 21:19:24 +00:00
// Failed to save the menu link.
2007-07-30 18:20:21 +00:00
return FALSE;
}
2005-06-05 10:52:04 +00:00
/**
2007-07-30 18:20:21 +00:00
* Update the bid for a page and its children when it is moved to a new book.
2006-09-05 10:01:48 +00:00
*
2007-07-30 18:20:21 +00:00
* @param $book_link
* A fully loaded menu link that is part of the book hierarchy.
*/
function book_update_bid($book_link) {
2008-11-16 15:02:45 +00:00
$query = db_select('menu_links');
$query->addField('menu_links', 'mlid');
2007-07-30 18:20:21 +00:00
for ($i = 1; $i <= MENU_MAX_DEPTH && $book_link["p$i"]; $i++) {
2008-11-16 15:02:45 +00:00
$query->condition("p$i", $book_link["p$i"]);
2007-07-30 18:20:21 +00:00
}
2008-11-16 15:02:45 +00:00
$mlids = $query->execute()->fetchCol();
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if ($mlids) {
2008-11-16 15:02:45 +00:00
db_update('book')
2008-12-23 14:32:08 +00:00
->fields(array('bid' => $book_link['bid']))
2008-11-16 15:02:45 +00:00
->condition('mlid', $mlids, 'IN')
->execute();
2007-07-30 18:20:21 +00:00
}
}
/**
* Get the book menu tree for a page, and return it as a linear array.
2006-09-05 10:01:48 +00:00
*
2007-07-30 18:20:21 +00:00
* @param $book_link
* A fully loaded menu link that is part of the book hierarchy.
2006-09-05 10:01:48 +00:00
* @return
2007-07-30 18:20:21 +00:00
* A linear array of menu links in the order that the links are shown in the
* menu, so the previous and next pages are the elements before and after the
2008-12-20 18:24:41 +00:00
* element corresponding to $node. The children of $node (if any) will come
2009-08-24 01:49:41 +00:00
* immediately after it in the array, and links will only be fetched as deep
* as one level deeper than $book_link.
2005-06-05 10:52:04 +00:00
*/
2007-07-30 18:20:21 +00:00
function book_get_flat_menu($book_link) {
2009-06-07 02:32:57 +00:00
$flat = &drupal_static(__FUNCTION__, array());
2007-07-30 18:20:21 +00:00
if (!isset($flat[$book_link['mlid']])) {
2008-05-02 17:37:46 +00:00
// Call menu_tree_all_data() to take advantage of the menu system's caching.
2009-08-24 01:49:41 +00:00
$tree = menu_tree_all_data($book_link['menu_name'], $book_link, $book_link['depth'] + 1);
2007-07-30 18:20:21 +00:00
$flat[$book_link['mlid']] = array();
_book_flatten_menu($tree, $flat[$book_link['mlid']]);
2003-03-10 20:18:38 +00:00
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
return $flat[$book_link['mlid']];
2003-03-10 20:18:38 +00:00
}
2004-05-09 19:28:43 +00:00
/**
2007-07-30 18:20:21 +00:00
* Recursive helper function for book_get_flat_menu().
2004-05-09 19:28:43 +00:00
*/
2007-07-30 18:20:21 +00:00
function _book_flatten_menu($tree, &$flat) {
foreach ($tree as $data) {
if (!$data['link']['hidden']) {
$flat[$data['link']['mlid']] = $data['link'];
if ($data['below']) {
_book_flatten_menu($data['below'], $flat);
}
}
2003-05-18 16:43:56 +00:00
}
2007-07-30 18:20:21 +00:00
}
2003-05-18 16:43:56 +00:00
2007-07-30 18:20:21 +00:00
/**
* Fetches the menu link for the previous page of the book.
*/
function book_prev($book_link) {
// If the parent is zero, we are at the start of a book.
if ($book_link['plid'] == 0) {
return NULL;
2003-03-10 20:18:38 +00:00
}
2007-07-30 18:20:21 +00:00
$flat = book_get_flat_menu($book_link);
// Assigning the array to $flat resets the array pointer for use with each().
$curr = NULL;
do {
$prev = $curr;
list($key, $curr) = each($flat);
} while ($key && $key != $book_link['mlid']);
if ($key == $book_link['mlid']) {
// The previous page in the book may be a child of the previous visible link.
if ($prev['depth'] == $book_link['depth'] && $prev['has_children']) {
// The subtree will have only one link at the top level - get its data.
2008-12-19 03:55:23 +00:00
$tree = book_menu_subtree_data($prev);
$data = array_shift($tree);
2007-07-30 18:20:21 +00:00
// The link of interest is the last child - iterate to find the deepest one.
while ($data['below']) {
$data = end($data['below']);
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
return $data['link'];
}
else {
return $prev;
}
2003-03-10 20:18:38 +00:00
}
}
2004-05-09 19:28:43 +00:00
/**
2007-07-30 18:20:21 +00:00
* Fetches the menu link for the next page of the book.
2004-05-09 19:28:43 +00:00
*/
2007-07-30 18:20:21 +00:00
function book_next($book_link) {
$flat = book_get_flat_menu($book_link);
// Assigning the array to $flat resets the array pointer for use with each().
do {
list($key, $curr) = each($flat);
2008-05-15 21:19:24 +00:00
}
while ($key && $key != $book_link['mlid']);
2007-07-30 18:20:21 +00:00
if ($key == $book_link['mlid']) {
return current($flat);
2003-03-10 20:18:38 +00:00
}
2007-07-30 18:20:21 +00:00
}
2003-03-10 20:18:38 +00:00
2007-07-30 18:20:21 +00:00
/**
* Format the menu links for the child pages of the current page.
*/
function book_children($book_link) {
$flat = book_get_flat_menu($book_link);
2004-04-24 16:31:54 +00:00
2007-07-30 18:20:21 +00:00
$children = array();
if ($book_link['has_children']) {
// Walk through the array until we find the current page.
do {
$link = array_shift($flat);
2008-05-15 21:19:24 +00:00
}
while ($link && ($link['mlid'] != $book_link['mlid']));
2007-07-30 18:20:21 +00:00
// Continue though the array and collect the links whose parent is this page.
while (($link = array_shift($flat)) && $link['plid'] == $book_link['mlid']) {
$data['link'] = $link;
$data['below'] = '';
$children[] = $data;
2003-03-10 20:18:38 +00:00
}
}
2008-05-15 21:19:24 +00:00
2009-09-18 10:54:20 +00:00
return $children ? drupal_render(menu_tree_output($children)) : '';
2003-03-10 20:18:38 +00:00
}
2005-06-05 10:52:04 +00:00
/**
2007-07-30 18:20:21 +00:00
* Generate the corresponding menu name from a book ID.
2005-06-05 10:52:04 +00:00
*/
2007-07-30 18:20:21 +00:00
function book_menu_name($bid) {
2008-04-14 17:48:46 +00:00
return 'book-toc-' . $bid;
2007-07-30 18:20:21 +00:00
}
2004-05-09 19:28:43 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_node_load().
2004-05-09 19:28:43 +00:00
*/
2009-03-08 04:25:07 +00:00
function book_node_load($nodes, $types) {
2008-12-29 16:03:57 +00:00
$result = db_query("SELECT * FROM {book} b INNER JOIN {menu_links} ml ON b.mlid = ml.mlid WHERE b.nid IN (:nids)", array(':nids' => array_keys($nodes)), array('fetch' => PDO::FETCH_ASSOC));
2008-12-05 22:18:46 +00:00
foreach ($result as $record) {
$nodes[$record['nid']]->book = $record;
$nodes[$record['nid']]->book['href'] = $record['link_path'];
$nodes[$record['nid']]->book['title'] = $record['link_title'];
$nodes[$record['nid']]->book['options'] = unserialize($record['options']);
2008-10-06 12:55:56 +00:00
}
}
2008-05-15 21:19:24 +00:00
2008-10-06 12:55:56 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_node_view().
2008-10-06 12:55:56 +00:00
*/
2009-11-08 10:02:41 +00:00
function book_node_view($node, $build_mode) {
2009-06-22 09:10:07 +00:00
if ($build_mode == 'full') {
if (!empty($node->book['bid']) && empty($node->in_preview)) {
2008-10-06 12:55:56 +00:00
$node->content['book_navigation'] = array(
2009-10-09 01:00:08 +00:00
'#markup' => theme('book_navigation', array('book_link' => $node->book)),
2008-10-06 12:55:56 +00:00
'#weight' => 100,
);
}
}
2009-01-26 14:08:44 +00:00
2009-06-22 09:10:07 +00:00
if ($build_mode != 'rss') {
book_node_view_link($node, $build_mode);
2009-05-03 10:11:35 +00:00
}
2009-04-25 23:01:43 +00:00
}
/**
2009-12-04 16:49:48 +00:00
* Implements hook_page_alter().
2009-04-25 23:01:43 +00:00
*
* Add the book menu to the list of menus used to build the active trail when
* viewing a book page.
*/
function book_page_alter(&$page) {
if (($node = menu_get_object()) && !empty($node->book['bid'])) {
$active_menus = menu_get_active_menu_names();
$active_menus[] = $node->book['menu_name'];
menu_set_active_menu_names($active_menus);
}
2008-10-06 12:55:56 +00:00
}
2008-05-15 21:19:24 +00:00
2008-10-06 12:55:56 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_node_presave().
2008-10-06 12:55:56 +00:00
*/
2009-11-08 10:02:41 +00:00
function book_node_presave($node) {
2008-10-06 12:55:56 +00:00
// Always save a revision for non-administrators.
if (!empty($node->book['bid']) && !user_access('administer nodes')) {
$node->revision = 1;
2008-12-23 14:32:08 +00:00
// The database schema requires a log message for every revision.
if (!isset($node->log)) {
$node->log = '';
}
2008-10-06 12:55:56 +00:00
}
// Make sure a new node gets a new menu link.
if (empty($node->nid)) {
$node->book['mlid'] = NULL;
}
}
2008-05-15 21:19:24 +00:00
2008-10-06 12:55:56 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_node_insert().
2008-10-06 12:55:56 +00:00
*/
2009-11-08 10:02:41 +00:00
function book_node_insert($node) {
2008-10-06 12:55:56 +00:00
if (!empty($node->book['bid'])) {
if ($node->book['bid'] == 'new') {
// New nodes that are their own book.
$node->book['bid'] = $node->nid;
}
$node->book['nid'] = $node->nid;
$node->book['menu_name'] = book_menu_name($node->book['bid']);
_book_update_outline($node);
}
}
2008-05-15 21:19:24 +00:00
2008-10-06 12:55:56 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_node_update().
2008-10-06 12:55:56 +00:00
*/
2009-11-08 10:02:41 +00:00
function book_node_update($node) {
2008-10-06 12:55:56 +00:00
if (!empty($node->book['bid'])) {
if ($node->book['bid'] == 'new') {
// New nodes that are their own book.
$node->book['bid'] = $node->nid;
}
$node->book['nid'] = $node->nid;
$node->book['menu_name'] = book_menu_name($node->book['bid']);
_book_update_outline($node);
}
}
2008-05-15 21:19:24 +00:00
2008-10-06 12:55:56 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_node_delete().
2008-10-06 12:55:56 +00:00
*/
2009-11-08 10:02:41 +00:00
function book_node_delete($node) {
2008-10-06 12:55:56 +00:00
if (!empty($node->book['bid'])) {
if ($node->nid == $node->book['bid']) {
// Handle deletion of a top-level post.
2008-11-16 15:02:45 +00:00
$result = db_query("SELECT b.nid FROM {menu_links} ml INNER JOIN {book} b on b.mlid = ml.mlid WHERE ml.plid = :plid", array(
':plid' => $node->book['mlid']
));
foreach ($result as $child) {
$child_node = node_load($child->nid);
2008-10-06 12:55:56 +00:00
$child_node->book['bid'] = $child_node->nid;
_book_update_outline($child_node);
2007-07-30 18:20:21 +00:00
}
2008-10-06 12:55:56 +00:00
}
menu_link_delete($node->book['mlid']);
2008-11-16 15:02:45 +00:00
db_delete('book')
->condition('mlid', $node->book['mlid'])
->execute();
2008-10-06 12:55:56 +00:00
}
}
/**
2009-12-04 16:49:48 +00:00
* Implements hook_node_prepare().
2008-10-06 12:55:56 +00:00
*/
2009-11-08 10:02:41 +00:00
function book_node_prepare($node) {
2008-10-06 12:55:56 +00:00
// Prepare defaults for the add/edit form.
if (empty($node->book) && (user_access('add content to books') || user_access('administer book outlines'))) {
$node->book = array();
if (empty($node->nid) && isset($_GET['parent']) && is_numeric($_GET['parent'])) {
// Handle "Add child page" links:
$parent = book_link_load($_GET['parent']);
if ($parent && $parent['access']) {
$node->book['bid'] = $parent['bid'];
$node->book['plid'] = $parent['mlid'];
$node->book['menu_name'] = $parent['menu_name'];
2007-08-20 17:54:35 +00:00
}
2008-10-06 12:55:56 +00:00
}
// Set defaults.
$node->book += _book_link_defaults(!empty($node->nid) ? $node->nid : 'new');
}
else {
if (isset($node->book['bid']) && !isset($node->book['original_bid'])) {
$node->book['original_bid'] = $node->book['bid'];
}
}
// Find the depth limit for the parent select.
if (isset($node->book['bid']) && !isset($node->book['parent_depth_limit'])) {
$node->book['parent_depth_limit'] = _book_parent_depth_limit($node->book);
2007-07-30 18:20:21 +00:00
}
}
2007-08-20 17:54:35 +00:00
/**
* Find the depth limit for items in the parent select.
*/
function _book_parent_depth_limit($book_link) {
return MENU_MAX_DEPTH - 1 - (($book_link['mlid'] && $book_link['has_children']) ? menu_link_children_relative_depth($book_link) : 0);
}
2007-07-30 18:20:21 +00:00
/**
* Form altering function for the confirm form for a single node deletion.
*/
function book_form_node_delete_confirm_alter(&$form, $form_state) {
$node = node_load($form['nid']['#value']);
if (isset($node->book) && $node->book['has_children']) {
$form['book_warning'] = array(
2009-12-02 19:26:23 +00:00
'#markup' => '<p>' . 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[LANGUAGE_NONE][0]['value'])) . '</p>',
2007-07-30 18:20:21 +00:00
'#weight' => -10,
);
2003-11-25 19:26:21 +00:00
}
2003-09-15 15:58:20 +00:00
}
2001-12-06 17:33:05 +00:00
2004-05-09 19:28:43 +00:00
/**
2007-07-30 18:20:21 +00:00
* 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());
}
2009-09-18 10:54:20 +00:00
/**
* Process variables for book-all-books-block.tpl.php.
*
* The $variables array contains the following arguments:
* - $book_menus
*
* All non-renderable elements are removed so that the template has full
* access to the structured data but can also simply iterate over all
* elements and render them (as in the default template).
*
* @see book-navigation.tpl.php
*/
function template_preprocess_book_all_books_block(&$variables) {
// Remove all non-renderable elements.
$elements = $variables['book_menus'];
$variables['book_menus'] = array();
foreach (element_children($elements) as $index) {
$variables['book_menus'][$index] = $elements[$index];
}
}
2007-07-30 18:20:21 +00:00
/**
2007-11-04 14:29:09 +00:00
* Process variables for book-navigation.tpl.php.
2007-07-30 18:20:21 +00:00
*
2007-11-04 14:29:09 +00:00
* The $variables array contains the following arguments:
* - $book_link
2005-03-22 18:34:20 +00:00
*
2007-11-04 14:29:09 +00:00
* @see book-navigation.tpl.php
2004-05-09 19:28:43 +00:00
*/
2007-11-04 14:29:09 +00:00
function template_preprocess_book_navigation(&$variables) {
$book_link = $variables['book_link'];
// Provide extra variables for themers. Not needed by default.
$variables['book_id'] = $book_link['bid'];
$variables['book_title'] = check_plain($book_link['link_title']);
2008-04-14 17:48:46 +00:00
$variables['book_url'] = 'node/' . $book_link['bid'];
2007-11-04 14:29:09 +00:00
$variables['current_depth'] = $book_link['depth'];
$variables['tree'] = '';
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if ($book_link['mlid']) {
2007-11-04 14:29:09 +00:00
$variables['tree'] = book_children($book_link);
2003-09-20 15:11:41 +00:00
2007-07-30 18:20:21 +00:00
if ($prev = book_prev($book_link)) {
2007-11-04 14:29:09 +00:00
$prev_href = url($prev['href']);
2009-11-03 06:47:23 +00:00
drupal_add_html_head_link(array('rel' => 'prev', 'href' => $prev_href));
2007-11-04 14:29:09 +00:00
$variables['prev_url'] = $prev_href;
$variables['prev_title'] = check_plain($prev['title']);
2004-01-17 23:34:11 +00:00
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if ($book_link['plid'] && $parent = book_link_load($book_link['plid'])) {
2007-11-04 14:29:09 +00:00
$parent_href = url($parent['href']);
2009-11-03 06:47:23 +00:00
drupal_add_html_head_link(array('rel' => 'up', 'href' => $parent_href));
2007-11-04 14:29:09 +00:00
$variables['parent_url'] = $parent_href;
$variables['parent_title'] = check_plain($parent['title']);
2004-01-17 23:34:11 +00:00
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if ($next = book_next($book_link)) {
2007-11-04 14:29:09 +00:00
$next_href = url($next['href']);
2009-11-03 06:47:23 +00:00
drupal_add_html_head_link(array('rel' => 'next', 'href' => $next_href));
2007-11-04 14:29:09 +00:00
$variables['next_url'] = $next_href;
$variables['next_title'] = check_plain($next['title']);
2004-01-17 23:34:11 +00:00
}
2007-11-04 14:29:09 +00:00
}
2004-01-14 19:26:41 +00:00
2007-11-04 14:29:09 +00:00
$variables['has_links'] = FALSE;
// Link variables to filter for values and set state of the flag variable.
$links = array('prev_url', 'prev_title', 'parent_url', 'parent_title', 'next_url', 'next_title');
foreach ($links as $link) {
if (isset($variables[$link])) {
// Flag when there is a value.
$variables['has_links'] = TRUE;
}
else {
// Set empty to prevent notices.
$variables[$link] = '';
2006-02-09 07:27:11 +00:00
}
2004-01-17 23:34:11 +00:00
}
2003-09-20 15:11:41 +00:00
}
2001-03-24 16:36:13 +00:00
2005-06-05 10:52:04 +00:00
/**
2007-07-30 18:20:21 +00:00
* A recursive helper function for book_toc().
2005-06-05 10:52:04 +00:00
*/
2007-08-16 12:47:34 +00:00
function _book_toc_recurse($tree, $indent, &$toc, $exclude, $depth_limit) {
2007-07-30 18:20:21 +00:00
foreach ($tree as $data) {
2007-08-16 12:47:34 +00:00
if ($data['link']['depth'] > $depth_limit) {
// Don't iterate through any links on this level.
break;
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if (!in_array($data['link']['mlid'], $exclude)) {
2008-04-14 17:48:46 +00:00
$toc[$data['link']['mlid']] = $indent . ' ' . truncate_utf8($data['link']['title'], 30, TRUE, TRUE);
2007-08-16 12:47:34 +00:00
if ($data['below']) {
2008-04-14 17:48:46 +00:00
_book_toc_recurse($data['below'], $indent . '--', $toc, $exclude, $depth_limit);
2004-08-10 14:16:01 +00:00
}
2001-12-17 19:45:47 +00:00
}
}
}
2005-06-05 10:52:04 +00:00
/**
2007-07-30 18:20:21 +00:00
* Returns an array of book pages in table of contents order.
*
* @param $bid
* The ID of the book whose pages are to be listed.
2009-04-27 07:08:00 +00:00
* @param $depth_limit
* Any link deeper than this value will be excluded (along with its children).
2007-07-30 18:20:21 +00:00
* @param $exclude
2008-12-20 18:24:41 +00:00
* Optional array of mlid values. Any link whose mlid is in this array
2007-07-30 18:20:21 +00:00
* will be excluded (along with its children).
* @return
* An array of mlid, title pairs for use as options for selecting a book page.
2005-06-05 10:52:04 +00:00
*/
2009-04-27 07:08:00 +00:00
function book_toc($bid, $depth_limit, $exclude = array()) {
2007-07-30 18:20:21 +00:00
$tree = menu_tree_all_data(book_menu_name($bid));
2004-08-24 03:22:26 +00:00
$toc = array();
2007-08-16 12:47:34 +00:00
_book_toc_recurse($tree, '', $toc, $exclude, $depth_limit);
2001-05-06 19:51:14 +00:00
2001-03-25 16:42:52 +00:00
return $toc;
}
2007-11-04 14:29:09 +00:00
/**
* Process variables for book-export-html.tpl.php.
*
* The $variables array contains the following arguments:
* - $title
* - $contents
* - $depth
*
* @see book-export-html.tpl.php
*/
function template_preprocess_book_export_html(&$variables) {
global $base_url, $language;
$variables['title'] = check_plain($variables['title']);
$variables['base_url'] = $base_url;
$variables['language'] = $language;
2009-01-20 03:18:41 +00:00
$variables['language_rtl'] = ($language->direction == LANGUAGE_RTL);
2007-11-04 14:29:09 +00:00
$variables['head'] = drupal_get_html_head();
}
2005-06-05 10:52:04 +00:00
/**
2007-07-30 18:20:21 +00:00
* Traverse the book tree to build printable or exportable output.
2005-06-05 10:52:04 +00:00
*
2007-11-04 14:29:09 +00:00
* During the traversal, the $visit_func() callback is applied to each
2007-07-30 18:20:21 +00:00
* node, and is called recursively for each child of the node (in weight,
2007-11-04 14:29:09 +00:00
* title order).
2006-12-29 07:41:44 +00:00
*
2007-07-30 18:20:21 +00:00
* @param $tree
* A subtree of the book menu hierarchy, rooted at the current page.
2007-11-04 14:29:09 +00:00
* @param $visit_func
2007-07-30 18:20:21 +00:00
* A function callback to be called upon visiting a node in the tree.
2005-06-05 10:52:04 +00:00
* @return
2007-07-30 18:20:21 +00:00
* The output generated in visiting each node.
2005-06-05 10:52:04 +00:00
*/
2007-11-04 14:29:09 +00:00
function book_export_traverse($tree, $visit_func) {
2007-06-28 08:56:28 +00:00
$output = '';
2007-07-30 18:20:21 +00:00
foreach ($tree as $data) {
// Note- access checking is already performed when building the tree.
2007-11-04 14:29:09 +00:00
if ($node = node_load($data['link']['nid'], FALSE)) {
$children = '';
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if ($data['below']) {
2007-11-04 14:29:09 +00:00
$children = book_export_traverse($data['below'], $visit_func);
2005-06-05 10:52:04 +00:00
}
2007-07-30 18:20:21 +00:00
2007-11-04 14:29:09 +00:00
if (function_exists($visit_func)) {
$output .= call_user_func($visit_func, $node, $children);
2005-06-05 10:52:04 +00:00
}
2005-11-30 13:16:53 +00:00
else {
2007-07-30 18:20:21 +00:00
// Use the default function.
2007-11-04 14:29:09 +00:00
$output .= book_node_export($node, $children);
2005-06-05 10:52:04 +00:00
}
2001-11-25 09:55:00 +00:00
}
2001-04-11 19:44:24 +00:00
}
2008-05-15 21:19:24 +00:00
2001-04-11 19:44:24 +00:00
return $output;
}
2001-11-01 11:00:51 +00:00
2005-06-05 10:52:04 +00:00
/**
2007-07-30 18:20:21 +00:00
* Generates printer-friendly HTML for a node.
*
2008-01-08 10:35:43 +00:00
* @see book_export_traverse()
2005-06-05 10:52:04 +00:00
*
* @param $node
2008-05-15 21:19:24 +00:00
* The node that will be output.
2007-11-04 14:29:09 +00:00
* @param $children
* All the rendered child nodes within the current node.
2005-06-05 10:52:04 +00:00
* @return
2007-07-30 18:20:21 +00:00
* The HTML generated for the given node.
2005-06-05 10:52:04 +00:00
*/
2009-11-08 10:02:41 +00:00
function book_node_export($node, $children = '') {
2009-11-07 13:35:21 +00:00
$build = node_build($node, 'print');
unset($build['#theme']);
// @todo Rendering should happen in the template using render().
$node->rendered = drupal_render($build);
2005-06-05 10:52:04 +00:00
2009-10-09 01:00:08 +00:00
return theme('book_node_export_html', array('node' => $node, 'children' => $children));
2005-06-05 10:52:04 +00:00
}
/**
2007-11-04 14:29:09 +00:00
* Process variables for book-node-export-html.tpl.php.
2007-07-30 18:20:21 +00:00
*
2007-11-04 14:29:09 +00:00
* The $variables array contains the following arguments:
* - $node
* - $children
2007-07-30 18:20:21 +00:00
*
2007-11-04 14:29:09 +00:00
* @see book-node-export-html.tpl.php
2005-06-05 10:52:04 +00:00
*/
2007-11-04 14:29:09 +00:00
function template_preprocess_book_node_export_html(&$variables) {
$variables['depth'] = $variables['node']->book['depth'];
2009-12-02 19:26:23 +00:00
$variables['title'] = check_plain($variables['node']->title[LANGUAGE_NONE][0]['value']);
2009-06-12 08:39:40 +00:00
$variables['content'] = $variables['node']->rendered;
2005-06-05 10:52:04 +00:00
}
2004-05-09 19:28:43 +00:00
/**
2007-07-30 18:20:21 +00:00
* Determine if a given node type is in the list of types allowed for books.
2004-05-09 19:28:43 +00:00
*/
2007-07-30 18:20:21 +00:00
function book_type_is_allowed($type) {
return in_array($type, variable_get('book_allowed_types', array('book')));
2005-05-05 09:36:51 +00:00
}
2007-07-30 18:20:21 +00:00
/**
2009-12-04 16:49:48 +00:00
* Implements hook_node_type_update().
2007-07-30 18:20:21 +00:00
*
* Update book module's persistent variables if the machine-readable name of a
* node type is changed.
*/
2009-08-11 15:50:56 +00:00
function book_node_type_update($type) {
if (!empty($type->old_type) && $type->old_type != $type->type) {
// Update the list of node types that are allowed to be added to books.
$allowed_types = variable_get('book_allowed_types', array('book'));
$key = array_search($type->old_type, $allowed_types);
if ($key !== FALSE) {
$allowed_types[$type->type] = $allowed_types[$key] ? $type->type : 0;
unset($allowed_types[$key]);
variable_set('book_allowed_types', $allowed_types);
}
// Update the setting for the "Add child page" link.
if (variable_get('book_child_type', 'book') == $type->old_type) {
variable_set('book_child_type', $type->type);
}
2007-07-30 18:20:21 +00:00
}
2001-11-18 12:30:08 +00:00
}
2007-07-30 18:20:21 +00:00
/**
* 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) {
2008-11-16 15:02:45 +00:00
if ($item = 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 = :mlid", array(
':mlid' => $mlid,
))->fetchAssoc()) {
2007-07-30 18:20:21 +00:00
_menu_link_translate($item);
return $item;
}
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
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.
*
2009-08-24 01:49:41 +00:00
* @param $link
2007-07-30 18:20:21 +00:00
* A fully loaded menu link.
* @return
* An subtree of menu links in an array, in the order they should be rendered.
*/
2009-08-24 01:49:41 +00:00
function book_menu_subtree_data($link) {
2009-06-07 02:32:57 +00:00
$tree = &drupal_static(__FUNCTION__, array());
2007-07-30 18:20:21 +00:00
2009-08-24 01:49:41 +00:00
// Generate a cache ID (cid) specific for this $menu_name and $link.
$cid = 'links:' . $link['menu_name'] . ':subtree-cid:' . $link['mlid'];
2007-07-30 18:20:21 +00:00
if (!isset($tree[$cid])) {
$cache = cache_get($cid, 'cache_menu');
2008-05-15 21:19:24 +00:00
2007-07-30 18:20:21 +00:00
if ($cache && isset($cache->data)) {
2008-03-14 08:51:37 +00:00
// If the cache entry exists, it will just be the cid for the actual data.
// This avoids duplication of large amounts of data.
$cache = cache_get($cache->data, 'cache_menu');
2008-05-15 21:19:24 +00:00
2008-03-14 08:51:37 +00:00
if ($cache && isset($cache->data)) {
$data = $cache->data;
}
2007-07-30 18:20:21 +00:00
}
2008-05-15 21:19:24 +00:00
2008-03-14 08:51:37 +00:00
// If the subtree data was not in the cache, $data will be NULL.
if (!isset($data)) {
2009-08-11 07:45:45 +00:00
$query = db_select('menu_links', 'ml', array('fetch' => PDO::FETCH_ASSOC));
2008-11-16 15:02:45 +00:00
$menu_router_alias = $query->join('menu_router', 'm', 'm.path = ml.router_path');
$book_alias = $query->join('book', 'b', 'ml.mlid = b.mlid');
$query->fields($book_alias);
2009-10-15 14:07:30 +00:00
$query->fields($menu_router_alias, array('load_functions', 'to_arg_functions', 'access_callback', 'access_arguments', 'page_callback', 'page_arguments', 'delivery_callback', 'title', 'title_callback', 'title_arguments', 'type'));
2008-11-16 15:02:45 +00:00
$query->fields('ml');
2009-08-24 01:49:41 +00:00
$query->condition('menu_name', $link['menu_name']);
for ($i = 1; $i <= MENU_MAX_DEPTH && $link["p$i"]; ++$i) {
$query->condition("p$i", $link["p$i"]);
2008-11-16 15:02:45 +00:00
}
for ($i = 1; $i <= MENU_MAX_DEPTH; ++$i) {
$query->orderBy("p$i");
2007-07-30 18:20:21 +00:00
}
2009-08-24 01:49:41 +00:00
$links = array();
foreach ($query->execute() as $item) {
$links[] = $item;
}
$data['tree'] = menu_tree_data($links, array(), $link['depth']);
2007-07-30 18:20:21 +00:00
$data['node_links'] = array();
menu_tree_collect_node_links($data['tree'], $data['node_links']);
2008-03-14 08:51:37 +00:00
// Compute the real cid for book subtree data.
2008-07-01 20:52:55 +00:00
$tree_cid = 'links:' . $item['menu_name'] . ':subtree-data:' . md5(serialize($data));
2008-03-14 08:51:37 +00:00
// Cache the data, if it is not already in the cache.
2008-05-15 21:19:24 +00:00
2008-03-14 08:51:37 +00:00
if (!cache_get($tree_cid, 'cache_menu')) {
cache_set($tree_cid, $data, 'cache_menu');
}
// Cache the cid of the (shared) data using the menu and item-specific cid.
cache_set($cid, $tree_cid, 'cache_menu');
2007-07-30 18:20:21 +00:00
}
// 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'];
2004-10-08 11:17:59 +00:00
}
2007-07-30 18:20:21 +00:00
return $tree[$cid];
2002-04-14 19:34:04 +00:00
}