You are here

function gauth_flush_caches in Google Auth 7

Same name and namespace in other branches
  1. 7.2 gauth.module \gauth_flush_caches()

Implements hook_flush_caches().

File

./gauth.module, line 156
Google Auth Api for drupal.

Code

function gauth_flush_caches() {
  if (db_table_exists('cache_gauth_scopes')) {
    return array(
      'cache_gauth_scopes',
    );
  }
}