1234567891011121314151617 |
- <?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);
- }
- }
|