You are here

drop_down_login.install in Drop Down Login 7

Install, update and uninstall functions for drop_down_login module.

File

drop_down_login.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for drop_down_login module.
 */

/**
 * Implements hook_uninstall().
 */
function drop_down_login_uninstall() {

  // Delete all Variables.
  db_delete('variable')
    ->condition('name', 'drop_down_login_%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
}

Functions

Namesort descending Description
drop_down_login_uninstall Implements hook_uninstall().