moderate) || ($node->uid == $user->uid && user_access('edit own book pages'))) { return TRUE; } else { // do nothing. node-access() will determine further access } } } /** * Implementation of hook_link(). */ function book_link($type, $node = 0, $main = 0) { $links = array(); if ($type == 'node' && isset($node->parent)) { if (!$main) { if (book_access('create', $node)) { $links[] = l(t('add child page'), "node/add/book/parent/$node->nid"); } $links[] = l(t('printer-friendly version'), 'book/print/'. $node->nid, 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($may_cache) { $items = array(); if ($may_cache) { $items[] = array('path' => 'book', 'title' => t('books'), 'access' => user_access('access content'), 'type' => MENU_NORMAL_ITEM, 'weight' => 5); $items[] = array('path' => 'node/add/book', 'title' => t('book page'), 'access' => user_access('create book pages')); $items[] = array('path' => 'admin/node/book', 'title' => t('books'), 'callback' => 'book_admin', 'access' => user_access('administer nodes'), 'weight' => 4); $items[] = array('path' => 'admin/node/book/orphan', 'title' => t('orphan pages'), 'callback' => 'book_admin_orphan', 'access' => user_access('administer nodes'), 'weight' => 8); $items[] = array('path' => 'book', 'title' => t('books'), 'callback' => 'book_render', 'access' => user_access('access content'), 'type' => MENU_SUGGESTED_ITEM); $items[] = array('path' => 'book/print', 'title' => t('printer-friendly version'), 'callback' => 'book_print', 'access' => user_access('access content'), 'type' => MENU_CALLBACK); } else { // To avoid SQL overhead, check whether we are on a node page and whether the // user is allowed to maintain books. if (arg(0) == 'node' && is_numeric(arg(1)) && user_access('maintain books')) { // Only add the outline-tab for non-book pages: $result = db_query(db_rewrite_sql("SELECT n.nid FROM {node} n WHERE n.nid = %d AND n.type != 'book'"), arg(1)); if (db_num_rows($result) > 0) { $items[] = array('path' => 'node/'. arg(1) .'/outline', 'title' => t('outline'), 'callback' => 'book_outline', 'access' => user_access('maintain books'), 'type' => MENU_LOCAL_TASK, 'weight' => 2); } } } return $items; } /** * 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) { $block = array(); if ($op == 'list') { $block[0]['info'] = t('Book navigation'); return $block; } else if ($op == 'view') { // Only display this block when the user is browsing a book: if (arg(0) == 'node' && is_numeric(arg(1))) { $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.parent FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE n.nid = %d'), arg(1)); if (db_num_rows($result) > 0) { $node = db_fetch_object($result); $path = book_location($node); $path[] = $node; $expand = array(); foreach ($path as $key => $node) { $expand[] = $node->nid; } $block['subject'] = check_plain($path[0]->title); $block['content'] = book_tree($expand[0], 5, $expand); } } return $block; } } /** * Implementation of hook_load(). */ function book_load($node) { global $user; $book = db_fetch_object(db_query('SELECT parent, weight, log FROM {book} WHERE nid = %d', $node->nid)); if (arg(2) == 'edit' && !user_access('administer nodes')) { // If a user is about to update a book page, we overload some // fields to reflect the changes. if ($user->uid) { $book->uid = $user->uid; $book->name = $user->name; } else { $book->uid = 0; $book->name = ''; } } return $book; } /** * Implementation of hook_insert(). */ function book_insert($node) { db_query("INSERT INTO {book} (nid, parent, weight, log) VALUES (%d, %d, %d, '%s')", $node->nid, $node->parent, $node->weight, $node->log); } /** * Implementation of hook_update(). */ function book_update($node) { db_query("UPDATE {book} SET parent = %d, weight = %d, log = '%s' WHERE nid = %d", $node->parent, $node->weight, $node->log, $node->nid); } /** * Implementation of hook_delete(). */ function book_delete(&$node) { db_query('DELETE FROM {book} WHERE nid = %d', $node->nid); } /** * Implementation of hook_validate(). */ function book_validate(&$node) { // Set default values for non-administrators. if (!user_access('administer nodes')) { $node->weight = 0; $node->revision = 1; } } /** * Implementation of hook_form(). */ function book_form(&$node) { global $user; $op = $_POST['op']; $output = form_select(t('Parent'), 'parent', ($node->parent ? $node->parent : arg(4)), book_toc($node->nid), t('The parent that this page belongs in. Note that pages whose parent is <top-level> are regarded as independent, top-level books.')); if (function_exists('taxonomy_node_form')) { $output .= implode('', taxonomy_node_form('book', $node)); } $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, '', NULL, TRUE); $output .= filter_form('format', $node->format); $output .= form_textarea(t('Log message'), 'log', $node->log, 60, 5, t('An explanation of the additions or updates being made to help other authors understand your motivations.')); if (user_access('administer nodes')) { $output .= form_weight(t('Weight'), 'weight', $node->weight, 15, t('Pages at a given level are ordered first by weight and then by title.')); } else { // If a regular user updates a book page, we create a new revision // authored by that user: $output .= form_hidden('revision', 1); } return $output; } /** * Implementation of function book_outline() * Handles all book outline operations. */ function book_outline() { $op = $_POST['op']; $edit = $_POST['edit']; $node = node_load(array('nid' => arg(1))); if ($node->nid) { switch ($op) { case t('Add to book outline'): db_query('INSERT INTO {book} (nid, parent, weight) VALUES (%d, %d, %d)', $node->nid, $edit['parent'], $edit['weight']); drupal_set_message(t('The post has been added to the book.')); drupal_goto("node/$node->nid"); break; case t('Update book outline'): db_query('UPDATE {book} SET parent = %d, weight = %d WHERE nid = %d', $edit['parent'], $edit['weight'], $node->nid); drupal_set_message(t('The book outline has been updated.')); drupal_goto("node/$node->nid"); break; case t('Remove from book outline'): db_query('DELETE FROM {book} WHERE nid = %d', $node->nid); drupal_set_message(t('The post has been removed from the book.')); drupal_goto("node/$node->nid"); break; default: $page = db_fetch_object(db_query('SELECT * FROM {book} WHERE nid = %d', $node->nid)); $output = form_select(t('Parent'), 'parent', $page->parent, book_toc($node->nid), t('The parent page in the book.')); $output .= form_weight(t('Weight'), 'weight', $node->weight, 15, t('Pages at a given level are ordered first by weight and then by title.')); if ($page->nid) { $output .= form_submit(t('Update book outline')); $output .= form_submit(t('Remove from book outline')); } else { $output .= form_submit(t('Add to book outline')); } drupal_set_title(check_plain($node->title)); return form($output); } } } /** * Return the the most recent revision that matches the specified conditions. */ function book_revision_load($page, $conditions = array()) { $revisions = array_reverse(node_revision_list($page)); foreach ($revisions as $revision) { // Extract the specified revision: $node = node_revision_load($page, $revision); // Check to see if the conditions are met: $status = TRUE; foreach ($conditions as $key => $value) { if ($node->$key != $value) { $status = FALSE; } } if ($status) { return $node; } } } /** * Return the path (call stack) to a certain book page. */ function book_location($node, $nodes = array()) { $parent = db_fetch_object(db_query(db_rewrite_sql('SELECT n.nid, n.title, b.parent, b.weight FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE n.nid = %d'), $node->parent)); if ($parent->title) { $nodes = book_location($parent, $nodes); array_push($nodes, $parent); } return $nodes; } function book_location_down($node, $nodes = array()) { $last_direct_child = db_fetch_object(db_query(db_rewrite_sql('SELECT n.nid, n.title, b.parent, b.weight FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE b.parent = %d ORDER BY b.weight DESC, n.title DESC'), $node->nid)); if ($last_direct_child) { array_push($nodes, $last_direct_child); $nodes = book_location_down($last_direct_child, $nodes); } return $nodes; } /** * Fetch the node object of the previous page of the book. */ function book_prev($node) { // If the parent is zero, we are at the start of a book so there is no previous. if ($node->parent == 0) { return NULL; } // Previous on the same level: $direct_above = db_fetch_object(db_query(db_rewrite_sql("SELECT n.nid, n.title FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE b.parent = %d AND n.status = 1 AND n.moderate = 0 AND (b.weight < %d OR (b.weight = %d AND n.title < '%s')) ORDER BY b.weight DESC, n.title DESC"), $node->parent, $node->weight, $node->weight, $node->title)); if ($direct_above) { // Get last leaf of $above. $path = book_location_down($direct_above); return $path ? (count($path) > 0 ? array_pop($path) : NULL) : $direct_above; } else { // Direct parent: $prev = db_fetch_object(db_query(db_rewrite_sql('SELECT n.nid, n.title FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE n.nid = %d AND n.status = 1 AND n.moderate = 0'), $node->parent)); return $prev; } } /** * Fetch the node object of the next page of the book. */ function book_next($node) { // get first direct child $child = db_fetch_object(db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE b.parent = %d AND n.status = 1 AND n.moderate = 0 ORDER BY b.weight ASC, n.title ASC'), $node->nid)); if ($child) { return $child; } // No direct child: get next for this level or any parent in this book. array_push($path = book_location($node), $node); // Path to top-level node including this one. while (($leaf = array_pop($path)) && count($path)) { $next = db_fetch_object(db_query(db_rewrite_sql("SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE b.parent = %d AND n.status = 1 AND n.moderate = 0 AND (b.weight > %d OR (b.weight = %d AND n.title > '%s')) ORDER BY b.weight ASC, n.title ASC"), $leaf->parent, $leaf->weight, $leaf->weight, $leaf->title)); if ($next) { return $next; } } } function book_content($node, $teaser = FALSE) { $op = $_POST['op']; // Always display the most recently approved revision of a node // (if any) unless we have to display this page in the context of // the moderation queue. if ($op != t('Preview') && $node->moderate && arg(0) != 'queue') { $revision = book_revision_load($node, array('moderate' => 0, 'status' => 1)); if ($revision) { $node = $revision; } } // Extract the page body. $node = node_prepare($node, $teaser); return $node; } /** * Implementation of hook_view(). * * If not displayed on the main page, we render the node as a page in the * book with extra links to the previous and next pages. */ function book_view(&$node, $teaser = FALSE, $page = FALSE) { $node = book_content($node, $teaser); if (!$teaser && $node->moderate) { $node->body .= '
The book organises content into a nested hierarchical structure. It is particularly good for manuals, Frequently Asked Questions (FAQs) and the like, allowing you to have chapters, sections, etc.
A book is simply a collection of nodes that have been linked together. These nodes are usually of type book page, but you can insert nodes of any type into a book outline. Every node in the book has a parent node which \"contains\" it. This is how book.module establishes its hierarchy. At any given level in the hierarchy, a book can contain many nodes. All these sibling nodes are sorted according to the weight that you give them.
Book pages contain a log message field which helps your users understand the motivation behind an edit of a book page. Each edited version of a book page is stored as a new revision of a node. This capability makes it easy to revert to an old version of a page, should that be desirable.
Like other node types, book submissions and edits may be subject to moderation, depending on your configuration. Similarly, books use permissions to determine who may read and write to them. Only administrators are allowed to create new books, which are really just nodes whose parent is <top-level>. To include an existing node in your book, click on the \"outline\"-tab on the node's page. This enables you to place the node wherever you'd like within the book hierarchy. To add a new node into your book, use the create content » book page link.
Administrators may review the hierarchy of their books by clicking on the collaborative book link in the administration pages. There, nodes may be edited, reorganized, removed from book, and deleted. This behavior may change in the future. When a parent node is deleted, it may leave behind child nodes. These nodes are now orphans. Administrators should periodically review their books for orphans and reaffiliate those pages as desired. Finally, administrators may also export their books to a single, flat HTML page which is suitable for printing.
Collaborative books let you easily set up a Frequently Asked Questions (FAQ) section on your web site. The main benefit is that you don't have to write all the questions/answers by yourself - let the community do it for you!
In order to set up the FAQ, you have to create a new book which will hold all your content. To do so, click on the create content » book page link. Give it a thoughtful title, and body. A title like \"Estonia Travel - FAQ\" is nice. You may always edit these fields later. You will probably want to designate <top-level> as the parent of this page. Leave the log message and type fields blank for now. After you have submitted this book page, you are ready to begin filling up your book with questions that are frequently asked.
Whenever you come across a post which you want to include in your FAQ, click on the administer link. Then click on the edit book outline button at the bottom of the page. Then place the relevant post wherever is most appropriate in your book by selecting a parent. Books are quite flexible. They can have sections like Flying to Estonia, Eating in Estonia and so on. As you get more experienced with the book module, you can reorganize posts in your book so that it stays organized.
Notes:
The book module offers a mean to organize content, authored by many users, in an online manual, outline or FAQ.
'); case 'admin/node/book/orphan': return t('Pages in a book are like a tree. As pages are edited, reorganized and removed, child pages might be left with no link to the rest of the book. Such pages are referred to as "orphan pages". On this page, administrators can review their books for orphans and reattach those pages as desired.
'); case 'node/add#book': return t("A book is a collaborative writing effort: users can collaborate writing the pages of the book, positioning the pages in the right order, and reviewing or modifying pages previously written. So when you have some information to share or when you read a page of the book and you didn't like it, or if you think a certain page could have been written better, you can do something about it."); } if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'outline') { return t('The outline feature allows you to include posts in the book hierarchy.', array('%book' => url('book'))); } } ?>