You are here

function emvideo_update_6001 in Embedded Media Field 6

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

File

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

Code

function emvideo_update_6001() {

  // We added the archive.org provider file, so need to rebuild the theme.
  drupal_rebuild_theme_registry();
  $ret[] = array(
    'query' => t('Rebuilt the theme to accommodate new third party video providers.'),
    'success' => TRUE,
  );
  return $ret;
}