You are here

simplemenu.install in SimpleMenu 6.2

Same filename and directory in other branches
  1. 6 simplemenu.install
  2. 7 simplemenu.install

File

simplemenu.install
View source
<?php

/**
 * Implementation of hook_update_N().
 */
function simplemenu_update_6001() {

  // if navigation menu was used in Drupal 5 use the same in Drupal 6.
  // otherwise, we can't do anything.
  if (variable_get('simplemenu_menu', 1) == 1) {
    variable_set('simplemenu_menu', 'navigation:0');
  }
  return array();
}

Functions

Namesort descending Description
simplemenu_update_6001 Implementation of hook_update_N().