You are here

function nodewords_ui_install in Nodewords: D6 Meta Tags 6.2

Same name and namespace in other branches
  1. 6.3 nodewords_ui/nodewords_ui.install \nodewords_ui_install()

Implements hook_install().

File

nodewords_ui/nodewords_ui.install, line 11
Install, update and uninstall functions for the User interface for Nodewords module.

Code

function nodewords_ui_install() {
  $value = variable_get('nodewords_edit', NULL);
  if (isset($value)) {
    variable_set('nodewords_ui_edit', $value);
  }
  db_query("UPDATE {system} SET weight = 12 WHERE name = 'nodewords_ui' AND type = 'module'");
}