| 1 |
<?php
|
| 2 |
// $Id: survey.module,v 1.18 2007/03/11 04:16:41 walkah Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* All code for this module is included in the .install file.
|
| 6 |
*/
|
| 7 |
|
| 8 |
include_once('./includes/install.inc');
|
| 9 |
module_disable(array('forms', 'survey', 'survey_webform_migration'));
|
| 10 |
drupal_uninstall_module('forms');
|
| 11 |
drupal_uninstall_module('survey');
|
| 12 |
drupal_uninstall_module('survey_webform_migration');
|
| 13 |
|
| 14 |
// Modules don't seem to like to uninstall themselves. Manual approach:
|
| 15 |
db_query('DELETE FROM {system} WHERE type = "module" AND name ="survey_webform_migrate"');
|