You are here

function msnf_install in Multistep Nodeform 6

Same name and namespace in other branches
  1. 7 msnf.install \msnf_install()

Implementation of hook_install().

File

./msnf.install, line 11
Installation routines for module "Multistep Nodeform".

Code

function msnf_install() {
  drupal_install_schema('msnf');

  // Set msnf to a higher weight so that it allows extra fields to load first.
  db_query("UPDATE {system} SET weight = 1000 WHERE name = 'msnf'");
}