You are here

function panopoly_theme_update_7002 in Panopoly Theme 7

Enable radix_layouts and clear layout/theme caches.

File

./panopoly_theme.install, line 51
An installation file for Panopoly Theme

Code

function panopoly_theme_update_7002() {
  module_enable(array(
    'radix_layouts',
  ));

  // Clear caches so that we can find the Radix layouts and make the Panopoly
  // layouts stubs.
  cache_clear_all('ctools_plugin_files:panels:layouts', 'cache');
  system_rebuild_theme_data();
}