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 modules/
image/ image.module - Implements hook_menu().
File
-
modules/
image/ image.admin.inc, line 469
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['name'], '', t('Delete'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.