You are here

shortener.install in Shorten URLs 6

Same filename and directory in other branches
  1. 7.2 shortener/shortener.install
  2. 7 shortener/shortener.install

(Un)installs the Shorten URLs Input Filter module.

File

shortener/shortener.install
View source
<?php

/**
 * @file
 *   (Un)installs the Shorten URLs Input Filter module.
 */

/**
 * Implementation of hook_uninstall().
 */
function shortener_uninstall() {

  //Remove format settings.
  db_query("DELETE FROM {variable} WHERE name LIKE 'shortener_url_behavior_%%' OR name LIKE 'shortener_url_length_%%'");
}

Functions

Namesort descending Description
shortener_uninstall Implementation of hook_uninstall().