date_popup_authored.install 502 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Install, update, and uninstall functions for the Date Popup Authored module.
  4. */
  5. /**
  6. * Implements hook_uninstall().
  7. */
  8. function date_popup_authored_uninstall() {
  9. // Delete the variables created by Date Popup Authored.
  10. foreach (node_type_get_types() as $node_type) {
  11. variable_del('date_popup_authored_enabled_' . $node_type->type);
  12. variable_del('date_popup_authored_format_' . $node_type->type);
  13. variable_del('date_popup_authored_year_range_' . $node_type->type);
  14. }
  15. }