function nodejs_uninstall in Node.js integration 6
Same name and namespace in other branches
- 7 nodejs.install \nodejs_uninstall()
Implements hook_uninstall().
File
- ./
nodejs.install, line 17 - Install, update and uninstall functions for the nodejs module.
Code
function nodejs_uninstall() {
variable_del('nodejs_server_scheme');
variable_del('nodejs_server_host');
variable_del('nodejs_server_port');
drupal_uninstall_schema('nodejs');
}