You are here

soft_length_limit.install in Soft Length Limit 7

Install/uninstall hooks for soft_length_limits module.

File

soft_length_limit.install
View source
<?php

/**
 * @file
 * Install/uninstall hooks for soft_length_limits module.
 */

/**
 * Implements hook_uninstall().
 *
 * Deletes variables defined by the module.
 */
function soft_length_limit_uninstall() {
  db_delete('variable')
    ->condition('name', "soft_length_limit_%", "LIKE")
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
}

Functions

Namesort descending Description
soft_length_limit_uninstall Implements hook_uninstall().