You are here

function workflow_extensions_uninstall in Workflow Extensions 6

Same name and namespace in other branches
  1. 7 workflow_extensions.install \workflow_extensions_uninstall()

Implementation of hook_uninstall().

File

./workflow_extensions.install, line 22
Install and uninstall hooks for Workflow Extensions module.

Code

function workflow_extensions_uninstall() {

  // Delete all workflow_extensions_* variables at once
  db_query("DELETE FROM {variable} WHERE name LIKE 'workflow_extensions_%%'");
}