You are here

function flush_page_cache_block_info in Flush page cache 7

Implements hook_block_info().

File

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

Code

function flush_page_cache_block_info() {
  $blocks['link'] = array(
    'info' => t('Flush page cache'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}