You are here

function mb_comment_uninstall in More Buttons 7

Implements hook_uninstall().

File

mb_comment/mb_comment.install, line 11
Installs, updates, and uninstalls More Buttons Comment.

Code

function mb_comment_uninstall() {

  // Remove variables.
  $node_types = array_keys(node_type_get_types());
  foreach ($node_types as $type) {
    variable_del('mb_comment_cancel_' . $type);
  }
}