function oembedcore_update_7004 in oEmbed 7
Same name and namespace in other branches
- 7.0 deprecated/oembedcore.install \oembedcore_update_7004()
Disable and uninstall oEmbed Field, Media oEmbed modules.
File
- modules/
oembedcore/ oembedcore.install, line 54 - Install file for the oembed core
Code
function oembedcore_update_7004() {
module_disable(array(
'oembedfield',
'media_oembed',
));
drupal_uninstall_modules(array(
'oembedfield',
'media_oembed',
));
}