You are here

function emimage_update_6001 in Embedded Media Field 6

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

File

contrib/emimage/emimage.install, line 74
This is the emimage.module's install, configuration, and removal instructions.

Code

function emimage_update_6001() {

  // We added options to themes, so need to rebuild the theme registry.
  drupal_rebuild_theme_registry();
  $ret[] = array(
    'query' => t('Rebuilt the theme to accommodate new options.'),
    'success' => TRUE,
  );
  return $ret;
}