image_effect_delete_form
- Versions
- 7
image_effect_delete_form($form, &$form_state, $style, $effect)
Form builder; Form for deleting an image effect.
See also
image_effect_delete_form_submit()
Parameters
$style Name of the image style from which the image effect will be removed.
$effect Name of the image effect to remove.
Related topics
Code
modules/image/image.admin.inc, line 426
<?php
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['name'], '@effect' => $effect['label']));
return confirm_form($form, $question, 'admin/config/media/image-styles/edit/' . $style['name'], '', t('Delete'));
}
?>Login or register to post comments 