You are here

function webform_encrypt_disable in Webform Encrypt 6

Same name and namespace in other branches
  1. 7 webform_encrypt.install \webform_encrypt_disable()

Implementation of hook_disable().

File

./webform_encrypt.install, line 12
Contains install- and update-related functions for the Webform Encrypt module.

Code

function webform_encrypt_disable() {
  drupal_set_message(t('Webform Encrypt has been disabled. However, all submitted data is still encrypted. Please !link to decrypt all data.', array(
    '!link' => l(t('uninstall the module'), 'admin/modules/uninstall'),
  )));
}