You are here

function node_convert_uninstall in Node Convert 7

Same name and namespace in other branches
  1. 6 node_convert.install \node_convert_uninstall()

Implements hook_uninstall().

File

./node_convert.install, line 76
Installs necessary tables for node convert templates.

Code

function node_convert_uninstall() {

  // Deleting node convert action.
  db_delete('actions')
    ->condition('callback', 'node_convert_convert_action')
    ->execute();
}