You are here

function flush_page_cache_theme in Flush page cache 7

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

Implements hook_theme().

File

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

Code

function flush_page_cache_theme() {
  return array(
    'flush_page_cache_link' => array(
      'variables' => array(),
    ),
    'flush_page_cache_custom_settings_table' => array(
      'render element' => 'form',
      'file' => 'flush_page_cache.admin.inc',
    ),
  );
}