You are here

function emvideo_update_6002 in Embedded Media Field 6.2

Same name and namespace in other branches
  1. 6.3 contrib/emvideo/emvideo.install \emvideo_update_6002()
  2. 6 contrib/emvideo/emvideo.install \emvideo_update_6002()

File

contrib/emvideo/emvideo.install, line 235
Installation, configuration, and removal of the emvideo module.

Code

function emvideo_update_6002() {

  // We changed the YouTube provider theme arguments, so need to rebuild the theme.
  drupal_rebuild_theme_registry();
  $ret[] = array(
    'query' => t('Rebuilt the theme to accommodate changes to the YouTube video provider theme.'),
    'success' => TRUE,
  );
  return $ret;
}