You are here

function pages_restriction_flush_caches in Pages Restriction Access 7

Implements hook_flush_caches().

File

./pages_restriction.module, line 87
Contains the administrative features for the Pages Restriction.

Code

function pages_restriction_flush_caches() {

  // Workaround just to trigger this function during Clear Cache button.
  module_load_include('inc', 'pages_restriction', 'includes/pages_restriction.cache');
  _pages_restriction_flush_cache();
  return array();
}