You are here

function google_adwords_uninstall in Google AdWords Conversion Tracking 7.2

Same name and namespace in other branches
  1. 6 google_adwords.install \google_adwords_uninstall()

Implements hook_uninstall().

File

./google_adwords.install, line 26
Install, update, and uninstall functions for the Google Adwords module.

Code

function google_adwords_uninstall() {

  // Remove variables.
  db_delete('variable')
    ->condition('name', 'google_adwords%', 'LIKE')
    ->execute();
}