You are here

function flush_page_cache_preprocess_page in Flush page cache 7

Same name and namespace in other branches
  1. 6 flush_page_cache.module \flush_page_cache_preprocess_page()

Implements hook_preprocess_page().

File

./flush_page_cache.module, line 212
Easing the pain when you need to flush...Drupal's cache.

Code

function flush_page_cache_preprocess_page(&$variables) {
  if (user_access('flush page cache') && variable_get('flush_page_cache_footer_link', '0')) {
    $variables['page']['footer']['flush_page_cache-link'] = array(
      '#markup' => theme('flush_page_cache_link'),
    );
  }
}