function config_perms_uninstall in Custom Permissions 6.2
Same name and namespace in other branches
- 7.2 config_perms.install \config_perms_uninstall()
Implementation of hook_uninstall().
File
- ./
config_perms.install, line 22 - Installation file
Code
function config_perms_uninstall() {
// Remove tables.
drupal_uninstall_schema('config_perms');
cache_clear_all('config_perms', 'cache');
menu_rebuild();
}