123456789101112131415 |
- <?php
- /**
- * @file
- * Installs, updates, and uninstalls More Buttons Extra.
- */
- /**
- * Implements hook_uninstall().
- */
- function mb_extra_uninstall() {
- // Remove variables.
- variable_del('mb_extra_destination_tabs');
- variable_del('mb_extra_confirm_cancel');
- }
|