mb_user.install 409 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Installs, updates, and uninstalls More Buttons User.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function mb_user_uninstall() {
  10. // Remove variables.
  11. $page_types = array_keys(mb_user_type_get_types());
  12. foreach ($page_types as $type) {
  13. variable_del('mb_content_cancel_' . $type);
  14. variable_del('mb_content_sac_' . $type);
  15. variable_del('mb_content_sacn_' . $type);
  16. }
  17. }