You are here

function oembedcore_update_7004 in oEmbed 7.0

Same name and namespace in other branches
  1. 7 modules/oembedcore/oembedcore.install \oembedcore_update_7004()

Disable and uninstall oEmbed Field, Media oEmbed modules.

File

deprecated/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',
  ));
}