function image_effect_delete_form

Form builder; Form for deleting an image effect.

Parameters

$style: Name of the image style from which the image effect will be removed.

$effect: Name of the image effect to remove.

See also

image_effect_delete_form_submit()

Related topics

1 string reference to 'image_effect_delete_form'
image_menu in drupal/core/modules/image/image.module
Implements hook_menu().

File

drupal/core/modules/image/image.admin.inc, line 413
Administration pages for image settings.

Code

function image_effect_delete_form($form, &$form_state, $style, $effect) {
  $form_state['image_style'] = $style;
  $form_state['image_effect'] = $effect;
  $question = t('Are you sure you want to delete the @effect effect from the %style style?', array(
    '%style' => $style
      ->label(),
    '@effect' => $effect['label'],
  ));
  return confirm_form($form, $question, 'admin/config/media/image-styles/edit/' . $style
    ->id(), '', t('Delete'));
}