You are here

function _pages_restriction_flush_cache in Pages Restriction Access 7

Function to flush everything from the cache table.

2 calls to _pages_restriction_flush_cache()
pages_restriction_flush_caches in ./pages_restriction.module
Implements hook_flush_caches().
_pages_restriction_cache_clear in ./pages_restriction.drush.inc
Rebuild Onetouch Pages Restriction cache.

File

includes/pages_restriction.cache.inc, line 11
Pages Restrictions cache related functions.

Code

function _pages_restriction_flush_cache() {
  db_delete('cache_pages_restriction')
    ->execute();
}