You are here

function cacheflush_ui_admin_paths in CacheFlush 7.3

Implements hook_admin_paths().

File

modules/cacheflush_ui/cacheflush_ui.module, line 97
Cacheflush User Interface.

Code

function cacheflush_ui_admin_paths() {
  $paths = array(
    'cacheflush/*' => TRUE,
  );
  return $paths;
}