You are here

function recaptcha_v3_uninstall in reCAPTCHA v3 7

Implements hook_uninstall().

File

./recaptcha_v3.install, line 12
Installation file for reCAPTCHA v3 module.

Code

function recaptcha_v3_uninstall() {
  db_delete('variable')
    ->condition('name', db_like('recaptcha_v3_') . '%', 'LIKE')
    ->execute();
}