You are here

function edit_limit_uninstall in Edit Limit 7

Same name and namespace in other branches
  1. 6 edit_limit.install \edit_limit_uninstall()

Implements hook_uninstall().

File

./edit_limit.install, line 107
Set up the database tables for Edit Limit.

Code

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