profile_uninstall
- Versions
- 5 – 7
profile_uninstall()
Implementation of hook_uninstall().
Code
modules/profile/profile.install, line 72
<?php
function profile_uninstall() {
db_query('DROP TABLE {profile_fields}');
db_query('DROP TABLE {profile_values}');
variable_del('profile_block_author_fields');
}
?>Login or register to post comments 