You are here

function css_emimage_uninstall in CSS Embedded Images 7

Same name and namespace in other branches
  1. 6.2 css_emimage.install \css_emimage_uninstall()
  2. 6 css_emimage.install \css_emimage_uninstall()

Implements hook_uninstall().

File

./css_emimage.install, line 23
Install, update, and uninstall functions for the css_emimage module.

Code

function css_emimage_uninstall() {

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