function views_ui_config_item_form_rescan

Submit hook to clear Drupal's theme registry (thereby triggering a templates rescan).

1 string reference to 'views_ui_config_item_form_rescan'
DisplayPluginBase::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Provide the default form for setting options.

File

drupal/core/modules/views/views_ui/admin.inc, line 2068
Provides the Views' administrative interface.

Code

function views_ui_config_item_form_rescan($form, &$form_state) {
  drupal_theme_rebuild();

  // The 'Theme: Information' page is about to be shown again. That page
  // analyzes the output of theme_get_registry(). However, this latter
  // function uses an internal cache (which was initialized before we
  // called drupal_theme_rebuild()) so it won't reflect the
  // current state of our theme registry. The only way to clear that cache
  // is to re-initialize the theme system:
  unset($GLOBALS['theme']);
  drupal_theme_initialize();
  $form_state['rerender'] = TRUE;
  $form_state['rebuild'] = TRUE;
}