You are here

function heartbeat_uninstall in Heartbeat 6.3

Same name and namespace in other branches
  1. 8 heartbeat.install \heartbeat_uninstall()
  2. 6.4 heartbeat.install \heartbeat_uninstall()
  3. 7 heartbeat.install \heartbeat_uninstall()

Implementation of hook_uninstall().

File

./heartbeat.install, line 32

Code

function heartbeat_uninstall() {

  // Remove all tables so no need to delete the messages
  drupal_uninstall_schema('heartbeat');

  // This should clear the rules with a linkage to the heartbeat action
  rules_clear_cache();
}