You are here

function panels_flush_caches in Panels 7.3

Same name and namespace in other branches
  1. 6.3 panels.module \panels_flush_caches()

Implements hook_flush_caches().

File

./panels.module, line 391
Core functionality for the Panels engine.

Code

function panels_flush_caches() {
  if (db_table_exists('cache_panels')) {
    return array(
      'cache_panels',
    );
  }
}