You are here

function webform_install in Webform 6.2

Same name and namespace in other branches
  1. 5.2 webform.install \webform_install()
  2. 5 webform.install \webform_install()
  3. 6.3 webform.install \webform_install()
  4. 7.4 webform.install \webform_install()
  5. 7.3 webform.install \webform_install()

Implementation of hook_install().

File

./webform.install, line 278
Webform module install/schema hooks.

Code

function webform_install() {
  db_query("UPDATE {system} SET weight = -1 WHERE name='webform' AND type='module'");
  drupal_install_schema('webform');
}