function imagecache_external_flush_form in Imagecache External 7.2
Same name and namespace in other branches
- 6.2 imagecache_external.admin.inc \imagecache_external_flush_form()
- 6 imagecache_external.admin.inc \imagecache_external_flush_form()
- 7 imagecache_external.admin.inc \imagecache_external_flush_form()
Form builder.
1 string reference to 'imagecache_external_flush_form'
- imagecache_external_menu in ./
imagecache_external.module - Implements hook_menu().
File
- ./
imagecache_external.admin.inc, line 95 - Admin forms for this module.
Code
function imagecache_external_flush_form($form, $form_state) {
return confirm_form($form, t('Flush all external images?'), 'admin/config/media/imagecache_external', t('Are you sure? This cannot be undone.'), t('Flush'), t('Cancel'));
}