You are here

function print_pdf_install in Printer, email and PDF versions 6

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

Implementation of hook_install().

File

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

Code

function print_pdf_install() {
  drupal_install_schema('print_pdf');

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