workflow_actions.install 266 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Uninstall functions for the workflow_action module.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function workflow_actions_uninstall() {
  10. return db_delete('trigger_assignments')
  11. ->condition('hook', 'workflow-%', 'LIKE')
  12. ->execute();
  13. }