You are here

function sf_import_uninstall in Salesforce Suite 7.2

Same name and namespace in other branches
  1. 6.2 sf_import/sf_import.install \sf_import_uninstall()

Implements hook_uninstall().

File

sf_import/sf_import.install, line 64
Install functions for Salesforce Import

Code

function sf_import_uninstall() {
  db_delete('variable')
    ->condition('{name}', 'sf_import%', 'LIKE')
    ->execute();
}