function book_init

6.x book.module book_init()

Implementation of hook_init(). Add's the book module's CSS.

File

drupal-6.x/modules/book/book.module, line 165
Allows users to structure the pages of a site in a hierarchy or outline.

Code

function book_init() {
  drupal_add_css(drupal_get_path('module', 'book') . '/book.css');
}