You are here

function imagecache_ui_preset_flush_form_submit in ImageCache 5.2

Same name and namespace in other branches
  1. 6.2 imagecache_ui.pages.inc \imagecache_ui_preset_flush_form_submit()

File

./imagecache_ui.module, line 212

Code

function imagecache_ui_preset_flush_form_submit($form_id, $form_values) {
  $preset = imagecache_preset($form_values['presetid']);
  imagecache_preset_flush($preset);
  drupal_set_message(t('Preset "%name" (ID: @id) flushed.', array(
    '%name' => $preset['presetname'],
    '@id' => $preset['presetid'],
  )));
  return 'admin/build/imagecache';
}