You are here

function ds_flush_caches in Display Suite 6

Same name and namespace in other branches
  1. 6.3 ds.module \ds_flush_caches()
  2. 6.2 ds.module \ds_flush_caches()

Implementation of hook_flush_caches().

File

./ds.module, line 85

Code

function ds_flush_caches() {

  // Reset fields cache.
  variable_del('ds_fields_cached');

  // Import default settings.
  ds_import_default_data();
  return array();
}