You are here

function book_node_info in Drupal 5

Same name and namespace in other branches
  1. 4 modules/book.module \book_node_info()

Implementation of hook_node_info().

File

modules/book/book.module, line 11
Allows users to collaboratively author a book.

Code

function book_node_info() {
  return array(
    'book' => array(
      'name' => t('Book page'),
      'module' => 'book',
      'description' => 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."),
    ),
  );
}