You are here

function mylivechat_uninstall in My Live Chat 7

Same name and namespace in other branches
  1. 6 mylivechat.install \mylivechat_uninstall()

Implements hook_uninstall().

File

./mylivechat.install, line 55
Installation file for MyLiveChat module.

Code

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