array('name' => t('book page'), 'base' => 'book')); } /** * Implementation of hook_perm(). */ function book_perm() { return array('create book pages', 'maintain books', 'edit own book pages'); } /** * Implementation of hook_access(). */ function book_access($op, $node) { global $user; if ($op == 'create') { // Only registered users can create book pages. Given the nature // of the book module this is considered to be a good/safe idea. return user_access('create book pages'); } if ($op == 'update') { // Only registered users can update book pages. Given the nature // of the book module this is considered to be a good/safe idea. // One can only update a book page if there are no suggested updates // of that page waiting for approval. That is, only updates that // don't overwrite the current or pending information are allowed. if ((user_access('maintain books') && !$node->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/export/html/'. $node->nid, array('title' => t('Show a printer-friendly version of this book page and its sub-pages.'))); $links[] = l(t('export DocBook XML'), 'book/export/docbook/'. $node->nid, array('title' => t('Export this book page and its sub-pages as DocBook XML.'))); $links[] = l(t('export OPML'), 'book/export/opml/'. $node->nid, array('title' => t('Export this book page and its sub-pages as OPML.'))); } } 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'), 'type' => MENU_LOCAL_TASK, 'weight' => -1); $items[] = array( 'path' => 'admin/node/book/list', 'title' => t('list'), 'type' => MENU_DEFAULT_LOCAL_TASK); $items[] = array( 'path' => 'admin/node/book/orphan', 'title' => t('orphan pages'), 'callback' => 'book_admin_orphan', 'type' => MENU_LOCAL_TASK, '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/export', 'callback' => 'book_export', '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.vid = b.vid 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 FROM {book} WHERE vid = %d', $node->vid)); 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, vid, parent, weight) VALUES (%d, %d, %d, %d)", $node->nid, $node->vid, $node->parent, $node->weight); } /** * Implementation of hook_update(). */ function book_update($node) { if ($node->revision) { db_query("INSERT INTO {book} (nid, vid, parent, weight) VALUES (%d, %d, %d, %d)", $node->nid, $node->vid, $node->parent, $node->weight); } else { db_query("UPDATE {book} SET parent = %d, weight = %d WHERE vid = %d", $node->parent, $node->weight, $node->vid); } } /** * 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) { $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(arg(1)); if ($node->nid) { switch ($op) { case t('Add to book outline'): db_query('INSERT INTO {book} (nid, vid, parent, weight) VALUES (%d, %d, %d, %d)', $node->nid, $node->vid, $edit['parent'], $edit['weight']); db_query("UPDATE {node_revisions} SET log = '%s' WHERE vid = %d", $edit['log'], $node->vid); 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 vid = %d', $edit['parent'], $edit['weight'], $node->vid); db_query("UPDATE {node_revisions} SET log = '%s' WHERE vid = %d", $edit['log'], $node->vid); 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 vid = %d', $node->vid)); $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', $page->weight, 15, t('Pages at a given level are ordered first by weight and then by title.')); $output .= form_textarea(t('Log message'), 'log', $node->log, 60, 5, t('An explanation to help other authors understand your motivations to put this post into the book.')); 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 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.vid = b.vid WHERE n.nid = %d'), $node->parent)); if ($parent->title) { $nodes = book_location($parent, $nodes); array_push($nodes, $parent); } return $nodes; } /** * Accumulates the nodes up to the root of the book from the given node in the $nodes array. */ 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 n.status = 1 AND 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; } /** * Fetches 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, b.weight FROM {node} n INNER JOIN {book} b ON n.vid = b.vid 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.vid = b.vid WHERE n.nid = %d AND n.status = 1 AND n.moderate = 0'), $node->parent)); return $prev; } } /** * Fetches 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.vid = b.vid 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.vid = b.vid 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; } } } /** * Returns the content of a given node. If $teaser if true, returns * the teaser rather than full content. Displays the most recently * approved revision of a node (if any) unless we have to display this * page in the context of the moderation queue. */ 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); } /** * Implementation of hook_nodeapi(). * * Appends book navigation to all nodes in the book. */ function book_nodeapi(&$node, $op, $teaser, $page) { switch ($op) { case 'view': if (!$teaser) { $book = db_fetch_array(db_query('SELECT * FROM {book} WHERE vid = %d', $node->vid)); if ($book) { if ($node->moderate && user_access('administer nodes')) { drupal_set_message(t("The post has been submitted for moderation and won't be accessible until it has been approved.")); } foreach ($book as $key => $value) { $node->$key = $value; } $node = theme('book_navigation', $node); if ($page) { menu_set_location($node->breadcrumb); } } } break; } } /** * Prepares both the custom breadcrumb trail and the forward/backward * navigation for a node presented as a book page. * * @ingroup themeable */ function theme_book_navigation($node) { $path = book_location($node); // Construct the breadcrumb: $node->breadcrumb = array(); // Overwrite the trail with a book trail. foreach ($path as $level) { $node->breadcrumb[] = array('path' => 'node/'. $level->nid, 'title' => $level->title); } $node->breadcrumb[] = array('path' => 'node/'. $node->nid); if ($node->nid) { $output .= '
'; if ($tree = book_tree($node->nid)) { $output .= '
'. $tree .'
'; } if ($prev = book_prev($node)) { $links .= ''; $titles .= ''; } else { $links .= ''; // Make an empty div to fill the space. } if ($next = book_next($node)) { $links .= ''; $titles .= ''; } else { $links .= ''; // Make an empty div to fill the space. } if ($node->parent) { $links .= '
'; $links .= l(t('up'), 'node/'. $node->parent, array('title' => t('View this page\'s parent section.'))); $links .= '
'; } $output .= ''; $output .= '
'; } $node->body = $node->body.$output; return $node; } /** * This is a helper function for book_toc(). */ function book_toc_recurse($nid, $indent, $toc, $children, $exclude) { if ($children[$nid]) { foreach ($children[$nid] as $foo => $node) { if (!$exclude || $exclude != $node->nid) { $toc[$node->nid] = $indent .' '. $node->title; $toc = book_toc_recurse($node->nid, $indent .'--', $toc, $children, $exclude); } } } return $toc; } /** * Returns an array of titles and nid entries of book pages in table of contents order. */ function book_toc($exclude = 0) { $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.parent, b.weight FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE n.status = 1 ORDER BY b.weight, n.title')); while ($node = db_fetch_object($result)) { if (!$children[$node->parent]) { $children[$node->parent] = array(); } array_push($children[$node->parent], $node); } $toc = array(); // If the user is an administrator, add the top-level book page; // only administrators can start new books. if (user_access('administer nodes')) { $toc[0] = '<'. t('top-level') .'>'; } $toc = book_toc_recurse(0, '', $toc, $children, $exclude); return $toc; } /** * This is a helper function for book_tree() */ function book_tree_recurse($nid, $depth, $children, $unfold = array()) { if ($depth > 0) { if ($children[$nid]) { foreach ($children[$nid] as $foo => $node) { if (in_array($node->nid, $unfold)) { if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) { $output .= '
  • '; $output .= l($node->title, 'node/'. $node->nid); $output .= ''; $output .= '
  • '; } else { $output .= '
  • '. l($node->title, 'node/'. $node->nid) .'
  • '; } } else { if ($tree = book_tree_recurse($node->nid, 1, $children)) { $output .= ''; } else { $output .= '
  • '. l($node->title, 'node/'. $node->nid) .'
  • '; } } } } } return $output; } /** * Returns an HTML nested list (wrapped in a menu-class div) representing the book nodes * as a tree. */ function book_tree($parent = 0, $depth = 3, $unfold = array()) { $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.parent, b.weight FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE n.status = 1 AND n.moderate = 0 ORDER BY b.weight, n.title')); while ($node = db_fetch_object($result)) { $list = $children[$node->parent] ? $children[$node->parent] : array(); array_push($list, $node); $children[$node->parent] = $list; } if ($tree = book_tree_recurse($parent, $depth, $children, $unfold)) { return ''; } } /** * Menu callback; prints a listing of all books. */ function book_render() { $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE b.parent = 0 AND n.status = 1 AND n.moderate = 0 ORDER BY b.weight, n.title')); $books = array(); while ($node = db_fetch_object($result)) { $books[] = l($node->title, 'node/'. $node->nid); } return theme('item_list', $books); } /** * Menu callback; Generates various representation of a book page with * all descendants and prints the requested representation to output. * * Notes: For HTML output, the given node is /embedded to its absolute * depth in a top level section/. For example, a child node with * depth 2 in the hierarchy is contained in (otherwise empty)
    * elements corresponding to depth 0 and depth 1. This is intended to * support WYSIWYG output - e.g., level 3 sections always look like * level 3 sections, no matter their depth relative to the node * selected to be exported as printer-friendly HTML. * * DocBook XML and OPML outputs do not attempt to embed a node to its * absolute level in the parent book. * For DocBook output, the exported node will be a document fragment * unless the node is a level 0 node (book), specifically * * * For OPML output, the exported node will be the top level element * in the OPML outline. * * @param type * - a string encoding the type of output requested. * The following types are supported: * 1) HTML (printer friendly output) * 2) DocBook XML * 3) OPML (Outline Processor Markup Language) outlines * @param nid * - an integer representing the node id (nid) of the node to export * */ function book_export($type = 'html', $nid = 0) { global $base_url; $type = drupal_strtolower($type); $depth = _book_get_depth($nid); switch ($type) { case 'docbook': $xml = "\n"; $xml .= "\n"; $xml .= book_recurse($nid, $depth, 'book_node_visitor_xml_pre', 'book_node_visitor_xml_post'); drupal_set_header('Content-Type: text/xml; charset=utf-8'); print $xml; break; case 'html': for ($i = 1; $i < $depth; $i++) { $output .= "
    \n"; } $output .= book_recurse($nid, $depth, 'book_node_visitor_html_pre', 'book_node_visitor_html_post'); for ($i = 1; $i < $depth; $i++) { $output .= "
    \n"; } $html = "\n"; $html .= ''; $html .= "\n". check_plain($node->title) ."\n"; $html .= ''; $html .= '' . "\n"; $html .= "\n"; $html .= "\n\n". $output . "\n\n\n"; print $html; break; case 'opml': $output .= book_recurse($nid, $depth, 'book_node_visitor_opml_pre', 'book_node_visitor_opml_post'); $ompl = "\n"; $opml .= "\n"; $opml .= "\n". check_plain($node->title) ."\n"; $opml .= "\n\n". $output . "\n\n\n"; drupal_set_header('Content-Type: text/xml; charset=utf-8'); print $opml; break; } } /** * Given a node, this function returns the depth of the node in its hierarchy. * A root node has depth 1, and children of a node of depth n have depth (n+1). * * @param node * - the node whose depth to compute. * @return * - the depth of the given node in its hierarchy. Returns 0 if the node * does not exist or is not part of a book hierarchy. */ function _book_get_depth($nid) { $depth = 0; if ($nid) { while ($nid) { $result = db_query(db_rewrite_sql('SELECT b.parent FROM {book} b WHERE b.nid = %d'), $nid); $obj = db_fetch_object($result); $parent = $obj->parent; if ($nid == $parent->parent) { $nid = 0; } else { $nid = $parent; } $depth++; } return $depth; } else { return 0; } } /** * Traverses the book tree. Applies the $visit_pre() callback to each * node, is called recursively for each child of the node (in weight, * title order). Finally appends the output of the $visit_post() * callback to the output before returning the generated output. * * @param nid * - the node id (nid) of the root node of the book hierarchy. * @param depth * - the depth of the given node in the book hierarchy. * @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_recurse($nid = 0, $depth = 1, $visit_pre, $visit_post) { $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE n.status = 1 AND n.nid = %d AND n.moderate = 0 ORDER BY b.weight, n.title'), $nid); while ($page = db_fetch_object($result)) { // Load the node: $node = node_load($page->nid); // Take the most recent approved revision: if ($node->moderate) { $node = book_revision_load($node, array('moderate' => 0, 'status' => 1)); } if ($node) { if (function_exists($visit_pre)) { $output .= call_user_func($visit_pre, $node, $depth, $nid); } else { $output .= book_node_visitor_html_pre($node, $depth, $nid); } $children = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE n.status = 1 AND b.parent = %d AND n.moderate = 0 ORDER BY b.weight, n.title'), $node->nid); while ($childpage = db_fetch_object($children)) { $childnode = node_load($childpage->nid); if ($childnode->nid != $node->nid) { $output .= book_recurse($childnode->nid, $depth+1, $visit_pre, $visit_post); } } if (function_exists($visit_post)) { $output .= call_user_func($visit_post, $node, $depth); } else { # default $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 for book_recurse(). * * @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. * @param $nid * - the node id (nid) of the given node. This * is used only for generating output. * @return * - the HTML generated for the given node. */ function book_node_visitor_html_pre($node, $depth, $nid) { // Output the content: if (node_hook($node, 'content')) { $node = node_invoke($node, 'content'); } // Allow modules to change $node->body before viewing. node_invoke_nodeapi($node, 'print', $node->body, false); $output .= "
    nid ."\" class=\"section-$depth\">\n"; $output .= "

    ". check_plain($node->title) ."

    \n"; if ($node->body) { $output .= $node->body; } return $output; } /** * Finishes up generation of printer-friendly HTML after visiting a * node. This function is a 'post-node' visitor function for * book_recurse(). */ function book_node_visitor_html_post($node, $depth) { return "
    \n"; } /** * Generates XML for a given node. This function is a 'pre-node' * visitor function for book_recurse(). The generated XML is valid * DocBook, but each node's HTML content is wrapped in a CDATA * section, and put inside a element. The node body * has an md5-hash applied; the value of this is stored as node * metadata to allow importing code to determine if contents have * changed. The weight of a node is also stored as metadata to * allow the node to be properly re-imported. * * @param $node * - the node to generate output for. * @param $depth * - the depth of the given node in the hierarchy. This * is currently not used. * @param $nid * - the node id (nid) of the given node. This * is used only for generating output (e.g., id attribute) * @return * - the generated XML for the given node. */ function book_node_visitor_xml_pre($node, $depth, $nid) { // Output the content: if (node_hook($node, 'content')) { $node = node_invoke($node, 'content'); } // Allow modules to change $node->body before viewing. node_invoke_nodeapi($node, 'export_xml', $node->body, false); $releaseinfo = "\n"; $releaseinfo .= "md5-hash:" . md5($node->body) . "\n"; $releaseinfo .= "weight:". $node->weight . "\n"; $releaseinfo .= "depth:". $depth . "\n"; $releaseinfo .= "\n"; $title = "". check_plain($node->title) ."\n"; // wrap the node body in a CDATA declaration $content = ""; $content .= "body) { $content .= $node->body; } $content .= "]]>"; $content .= "\n"; if ($depth == 1) { $output .= "\n"; $output .= $title; $output .= "\n$releaseinfo\n"; $output .= "\n"; $output .= "Preface\n"; $output .= $content; $output .= "\n"; } else if ($depth == 2) { $output .= "nid ."\">\n"; $output .= "\n$releaseinfo\n"; $output .= $title; $output .= $content; } else { $output .= "
    nid ."\">\n"; $output .= "\n$releaseinfo\n"; $output .= $title; $output .= $content; } return $output; } /** * Completes the XML generation for the node. This function is a * 'post-node' visitor function for book_recurse(). */ function book_node_visitor_xml_post($node, $depth) { if ($depth == 1) { return "\n"; } else if ($depth == 2) { return "\n"; } else { return "
    \n"; } } /** * Generates OPML for a node. This function is a 'pre-node' visitor * function for book_recurse(). * * @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. * @param $nid * - the node id (nid) of the given node. This is used only for * generating output. * @return * - the OPML generated for the given node. */ function book_node_visitor_opml_pre($node, $depth, $nid) { // Output the content: if (node_hook($node, 'content')) { $node = node_invoke($node, 'content'); } $output .= "nid ."\"\n"; $text = check_plain($node->title); $output .= "text=\"$text\">\n"; return $output; } /** * Finishes up generation of OPML after visiting a node. This function * is a 'post-node' visitor function for book_recurse(). */ function book_node_visitor_opml_post($node, $depth) { return "\n"; } /** * Creates a row for the 'admin' view of a book. Each row represents a page in the book, in the tree representing the book */ function book_admin_edit_line($node, $depth = 0) { return array('
    '. form_textfield(NULL, $node->nid .'][title', $node->title, 60, 255) .'
    ', form_weight(NULL, $node->nid .'][weight', $node->weight, 15), l(t('view'), 'node/'. $node->nid), l(t('edit'), 'node/'. $node->nid .'/edit'), l(t('delete'), 'node/'.$node->nid.'/delete')); } function book_admin_edit_book($nid, $depth = 1) { $result = db_query(db_rewrite_sql('SELECT n.nid, b.weight FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE b.parent = %d ORDER BY b.weight, n.title'), $nid); $rows = array(); while ($node = db_fetch_object($result)) { $node = node_load($node->nid); $rows[] = book_admin_edit_line($node, $depth); $rows = array_merge($rows, book_admin_edit_book($node->nid, $depth + 1)); } return $rows; } /** * Display an administrative view of the hierarchy of a book. */ function book_admin_edit($nid, $depth = 0) { $node = node_load($nid); if ($node->nid) { $header = array(t('Title'), t('Weight'), array('data' => t('Operations'), 'colspan' => '3')); $rows[] = book_admin_edit_line($node); $rows = array_merge($rows, book_admin_edit_book($nid)); $output .= theme('table', $header, $rows); $output .= form_submit(t('Save book pages')); drupal_set_title(check_plain($node->title)); return form($output); } else { drupal_not_found(); } } /** * Saves the changes to a book made by an administrator in the book admin view. */ function book_admin_save($nid, $edit = array()) { if ($nid) { $book = node_load($nid); foreach ($edit as $nid => $value) { // Check to see whether the title needs updating: $node = db_fetch_object(db_query('SELECT title, vid FROM {node} WHERE nid = %d', $nid)); if ($node->title != $value['title']) { db_query("UPDATE {node} SET title = '%s' WHERE nid = %d", $value['title'], $nid); db_query("UPDATE {book} SET title = '%s' WHERE vid = %d", $value['title'], $node->vid); } // Check to see whether the weight needs updating: $node = db_fetch_object(db_query('SELECT b.vid, b.weight FROM {book} b INNER JOIN {node} n ON n.vid = b.vid WHERE n.nid = %d', $nid)); if ($node->weight != $value['weight']) { db_query('UPDATE {book} SET weight = %d WHERE vid = %d', $value['weight'], $node->vid); } } $message = t('The book %title has been updated.', array('%title' => theme('placeholder', $book->title))); watchdog('content', $message); return $message; } } /** * Menu callback; displays a listing of all orphaned book pages. */ function book_admin_orphan() { $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, n.status, b.parent FROM {node} n INNER JOIN {book} b ON n.vid = b.vid')); while ($page = db_fetch_object($result)) { $pages[$page->nid] = $page; } if ($pages) { $output .= '

    '. t('Orphan pages') .'

    '; $header = array(t('Title'), t('Weight'), array('data' => t('Operations'), 'colspan' => '3')); foreach ($pages as $nid => $node) { if ($node->parent && empty($pages[$node->parent])) { $rows[] = book_admin_edit_line($node, $depth); $rows = array_merge($rows, book_admin_edit_book($node->nid, $depth + 1)); } } $output .= theme('table', $header, $rows); } return $output; } /** * Menu callback; displays the book administration page. */ function book_admin($nid = 0) { $op = $_POST['op']; $edit = $_POST['edit']; if ($op == t('Save book pages')) { drupal_set_message(book_admin_save($nid, $edit)); } if ($nid) { return book_admin_edit($nid); } else { return book_admin_overview(); } } /** * Returns an administrative overview of all books. */ function book_admin_overview() { $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE b.parent = 0 ORDER BY b.weight, n.title')); while ($book = db_fetch_object($result)) { $rows[] = array(l($book->title, "node/$book->nid"), l(t('outline'), "admin/node/book/$book->nid")); } $headers = array(t('Book'), t('Operations')); return theme('table', $headers, $rows); } /** * Implementation of hook_help(). */ function book_help($section) { switch ($section) { case 'admin/help#book': return t( "

    The \"book\" content type 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.

    Books have additional ''previous'', ''up'', and ''next'' navigation elements at the bottom of each page for moving through the text. Additional navigation may be provided by enabling the \"book navigation block\" on the block administration page.

    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. They can choose to export the page and its subsections as DocBook XML (for offline editing, or production of print or other electronic publication formats) by selecting the \"export DocBook XML\" link. DocBook export currently treats node content as preformatted text. Selecting the \"export OPML\" link will generate an outline document (titles only) in OPML format, readable by many outline editing tools. Note: it may be neccessary to shift-click on the link to save the results to a file on the local computer.

    Administrators can view a book outline, from which is it possible to change the titles of sections, and their weight (thus reordering sections). From this outline, it is also possible to edit and/or delete book pages. Many content types besides pages (for example, blog entries, stories, and polls) can be added to a collaborative book by choosing the \"outline\" tab when viewing the post.

    You can:

    For more information, visit the online documentation. ", array( '%create' => url('node/add/book'), '%collaborative-book' => url('admin/node/book'), '%workflow' => url('admin/node/configure/types/book'), '%book-block' => url('admin/block'), '%permissions' => url('admin/access/permissions'), '%book-module-help' => url('http://drupal.org/handbook/modules/book') ) ); case 'admin/modules#description': return t('Allows users to collaboratively author a book.'); case 'admin/node/book': return t('

    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'))); } }