You are here

function vertical_tabs_install in Vertical Tabs 6

Implement hook_install().

File

./vertical_tabs.install, line 11
Install, update and uninstall functions for the vertical_tabs module.

Code

function vertical_tabs_install() {

  // Make this module's weight heavy so it runs after most form alterations.
  db_query("UPDATE {system} SET weight = 300 WHERE type = 'module' AND name = 'vertical_tabs'");
}