mb_comment.install in More Buttons 7
Installs, updates, and uninstalls More Buttons Comment.
File
mb_comment/mb_comment.installView 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
Name![]() |
Description |
---|---|
mb_comment_uninstall | Implements hook_uninstall(). |