function sms_receive_uninstall in SMS Framework 5
Implementation of hook_uninstall().
File
- modules/
sms_receive/ sms_receive.install, line 20
Code
function sms_receive_uninstall() {
db_query('DROP TABLE {sms_receive}');
// remove set_variables here
drupal_set_message(t('SMS Framework uninstalled successfully.'));
}