14 lines
210 B
Plaintext
14 lines
210 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* SWFUpload install file.
|
|
*/
|
|
|
|
/**
|
|
* Implementation of hook_uninstall().
|
|
*/
|
|
function swfupload_uninstall() {
|
|
db_query('DELETE FROM {variable} WHERE name LIKE "swfupload_setting_%"');
|
|
}
|