function display_cache_flush_caches_form in Display Cache 7
Returns a 'Flush Caches'-button.
@see: display_cache_menu()
1 string reference to 'display_cache_flush_caches_form'
- display_cache_menu in ./
display_cache.module - Implements hook_menu().
File
- ./
display_cache.admin.inc, line 12 - Provides the Display Cache administrative interface.
Code
function display_cache_flush_caches_form($form, $form_state) {
$form['display_cache_flush_caches'] = array(
'#type' => 'submit',
'#value' => t('Flush all display caches'),
);
return $form;
}