You are here

yandex_turbo.install in Yandex.Turbo 7

File

yandex_turbo.install
View source
<?php

/**
 * Implements hook_uninstall().
 */
function yandex_turbo_uninstall() {
  db_delete('variable')
    ->condition('name', db_like('yandex_turbo_') . '%', 'LIKE')
    ->execute();
}

Functions

Namesort descending Description
yandex_turbo_uninstall Implements hook_uninstall().