function services_client_uninstall in Services Client 7
Same name and namespace in other branches
- 7.2 services_client.install \services_client_uninstall()
Implementation of hook_uninstall().
File
- ./
services_client.install, line 159 - Installation file for services_client module.
Code
function services_client_uninstall() {
// Remove all tables on uninstall
foreach (array_keys(services_client_schema()) as $table) {
db_drop_table($table);
}
}