function shortener_uninstall in Shorten URLs 6
Implementation of hook_uninstall().
File
- shortener/
shortener.install, line 11 - (Un)installs the Shorten URLs Input Filter module.
Code
function shortener_uninstall() {
//Remove format settings.
db_query("DELETE FROM {variable} WHERE name LIKE 'shortener_url_behavior_%%' OR name LIKE 'shortener_url_length_%%'");
}