You are here

function emfield_update_6002 in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 emfield.install \emfield_update_6002()
  2. 6.2 emfield.install \emfield_update_6002()

Rebuild themes and views.

File

./emfield.install, line 61
This is the emfield.module's install, configuration, and removal file.

Code

function emfield_update_6002() {
  drupal_rebuild_theme_registry();
  $ret = array();
  if (module_exists('views')) {
    $ret[] = update_sql("DELETE FROM {cache_views}");
  }
  return $ret;
}