You are here

function aes_uninstall in AES encryption 8.2

Same name and namespace in other branches
  1. 5 aes.install \aes_uninstall()
  2. 6 aes.install \aes_uninstall()
  3. 7 aes.install \aes_uninstall()

Implements hook_uninstall().

File

./aes.install, line 130
Install/uninstall handling for AES.

Code

function aes_uninstall() {
  FileStorageFactory::getActive()
    ->delete('aes.settings');
  drupal_set_message(t('AES uninstalled.'));
}