You are here

function gplib_flush_caches in Grammar Parser Library 7

Same name and namespace in other branches
  1. 7.2 gplib.module \gplib_flush_caches()

Implements hook_flush_caches().

File

./gplib.module, line 57
Provides primary Drupal hook implementations.

Code

function gplib_flush_caches() {

  // Use this hook as a proxy to force periodic refreshing of the version state.
  variable_set('gplib_grammar_parser_version_state', GPLIB_VERSION_UNKNOWN);
  return array();
}