You are here

function print_mail_install in Printer, email and PDF versions 6

Same name and namespace in other branches
  1. 5.4 print_mail/print_mail.install \print_mail_install()
  2. 5.x print_mail/print_mail.install \print_mail_install()

Implementation of hook_install().

File

print_mail/print_mail.install, line 13
Install file of the print_mail module

Code

function print_mail_install() {
  drupal_install_schema('print_mail');

  // Module weight
  update_sql("UPDATE {system} SET weight = 1 WHERE name = 'print_mail'");
}