swfupload.install 210 B

12345678910111213
  1. <?php
  2. /**
  3. * @file
  4. * SWFUpload install file.
  5. */
  6. /**
  7. * Implementation of hook_uninstall().
  8. */
  9. function swfupload_uninstall() {
  10. db_query('DELETE FROM {variable} WHERE name LIKE "swfupload_setting_%"');
  11. }