views_bulk_operations.install 226 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Installation and update functions.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function views_bulk_operations_uninstall() {
  10. // Remove VBO actions that are now orphaned.
  11. actions_synchronize(TRUE);
  12. }