function media_metadata_uninstall in D7 Media 6
Implementation of hook_uninstall().
File
- media_metadata/
media_metadata.install, line 13
Code
function media_metadata_uninstall() {
drupal_uninstall_schema('media_metadata');
// Remove all variables that live in our namespace.
db_query("DELETE FROM {variable} WHERE name LIKE 'media_metadata_%'");
}