You are here

function msnf_uninstall in Multistep Nodeform 7

Same name and namespace in other branches
  1. 6 msnf.install \msnf_uninstall()

Implements hook_uninstall().

File

./msnf.install, line 22
Installation routines for module "Multistep Nodeform".

Code

function msnf_uninstall() {

  // Remove variables created by Multistep eNtityform.
  db_delete('variable')
    ->condition('name', 'msnf\\_%', 'LIKE');
}