shortener.install in Shorten URLs 6
Same filename and directory in other branches
(Un)installs the Shorten URLs Input Filter module.
File
shortener/shortener.installView 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
Name | Description |
---|---|
shortener_uninstall | Implementation of hook_uninstall(). |