You are here

mb_comment.install in More Buttons 7

Installs, updates, and uninstalls More Buttons Comment.

File

mb_comment/mb_comment.install
View source
<?php

/**
 * @file
 * Installs, updates, and uninstalls More Buttons Comment.
 */

/**
 * Implements hook_uninstall().
 */
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);
  }
}

Functions

Namesort descending Description
mb_comment_uninstall Implements hook_uninstall().