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
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.