function quote_uninstall in Quote 7.2
Same name and namespace in other branches
- 5 quote.install \quote_uninstall()
- 6.2 quote.install \quote_uninstall()
- 6 quote.install \quote_uninstall()
- 7 quote.install \quote_uninstall()
Implements hook_uninstall().
File
- ./
quote.install, line 11 - The installation script for the quote module.
Code
function quote_uninstall() {
variable_del('quote_modes_quote_sel');
variable_del('quote_modes_quote_all');
variable_del('quote_modes_quote_reply_all');
variable_del('quote_modes_quote_reply_sel');
variable_del('quote_allow_comments');
variable_del('quote_allow_types');
variable_del('quote_selector');
variable_del('quote_limit');
variable_del('quote_selector_comment_quote_all');
variable_del('quote_selector_node_quote_all');
}