mb_content.install 413 B

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