You are here

nodewords_ui.install in Nodewords: D6 Meta Tags 6.3

Same filename and directory in other branches
  1. 6.2 nodewords_ui/nodewords_ui.install

Install, update and uninstall functions for the User interface for Nodewords module.

File

nodewords_ui/nodewords_ui.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the User interface for Nodewords module.
 */

/**
 * Implements hook_install().
 */
function nodewords_ui_install() {
  db_query("UPDATE {system} SET weight = 12 WHERE name = 'nodewords_ui' AND type = 'module'");
}

/**
 * Implements hook_update_N().
 */
function nodewords_tokens_update_6301() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 12 WHERE name = 'nodewords_ui' AND type = 'module'");
  return $ret;
}

Functions