You are here

nodewords_admin.install in Nodewords: D6 Meta Tags 6.3

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

Install, update and uninstall functions for the Administration interface module.

File

nodewords_admin/nodewords_admin.install
View source
<?php

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

/**
 * Implements hook_update_N().
 */
function nodewords_admin_update_6300() {
  $ret = array();
  if (!variable_get('menu_rebuild_needed', FALSE)) {
    variable_set('menu_rebuild_needed', TRUE);
  }
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Updated the module menus',
  );
  return $ret;
}

Functions

Namesort descending Description
nodewords_admin_update_6300 Implements hook_update_N().