You are here

function book_helper_install in Book helper 6

Same name and namespace in other branches
  1. 7 book_helper.install \book_helper_install()

Implementation of hook_install().

File

./book_helper.install, line 10
Install and uninstall functions for the 'Book helper' module.

Code

function book_helper_install() {

  // Set weight=10 so that the book_helper.module is called after the book.module.
  db_query("UPDATE {system} SET weight=10 WHERE name='book_helper'");
}