poll_uninstall
- Versions
- 5 – 6
poll_uninstall()
Implementation of hook_uninstall().
Code
modules/poll/poll.install, line 72
<?php
function poll_uninstall() {
db_query('DROP TABLE {poll}');
db_query('DROP TABLE {poll_votes}');
db_query('DROP TABLE {poll_choices}');
}
?>Login or register to post comments 