You are here

function pet_uninstall in Previewable email templates 6

Same name and namespace in other branches
  1. 7 pet.install \pet_uninstall()

Implementation of hook_uninstall().

File

./pet.install, line 47
Previewable E-mail Template module install/schema/update hooks.

Code

function pet_uninstall() {
  drupal_uninstall_schema('pet');
  drupal_set_message(t('Previewable email template module has been uninstalled.'));
}