You are here

function signup_confirm_email_update_6000 in Signup 7

Same name and namespace in other branches
  1. 6.2 modules/signup_confirm_email/signup_confirm_email.install \signup_confirm_email_update_6000()
  2. 6 modules/signup_confirm_email/signup_confirm_email.install \signup_confirm_email_update_6000()

Rebuild the site's menu to remove the stale menu item.

File

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

Code

function signup_confirm_email_update_6000() {
  menu_rebuild();

  // hook_update_N() no longer returns a $ret array. Instead, return
  // nothing or a translated string indicating the update ran successfully.
  // See http://drupal.org/node/224333#update_sql.
  return t('TODO Add a descriptive string here to show in the UI.');
}