You are here

function delta_uninstall in Delta 7.2

Same name and namespace in other branches
  1. 6 delta.install \delta_uninstall()
  2. 7 delta.install \delta_uninstall()

Implementation of hook_uninstall().

File

./delta.install, line 64
Contains install, update, and uninstall functions for Skinr.

Code

function delta_uninstall() {

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