You are here

function admin_page_fieldsets_uninstall in Util 7

Implements hook_uninstall().

File

contribs/admin_page_fieldsets/admin_page_fieldsets.install, line 8

Code

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