You are here

function workflow_access_uninstall in Workflow 5

Same name and namespace in other branches
  1. 8 modules/workflow_access/workflow_access.install \workflow_access_uninstall()
  2. 5.2 workflow_access.install \workflow_access_uninstall()
  3. 6.2 workflow_access/workflow_access.install \workflow_access_uninstall()
  4. 6 workflow_access/workflow_access.install \workflow_access_uninstall()
  5. 7 workflow_access/workflow_access.install \workflow_access_uninstall()

Implementation of hook_uninstall().

File

./workflow_access.install, line 50

Code

function workflow_access_uninstall() {
  db_query('DROP TABLE {workflow_access}');

  // Purge records from the node access table.
  node_access_rebuild();
}