function collageformatter_flush_style_submit in Collage Formatter 7
Same name and namespace in other branches
- 8 collageformatter.module \collageformatter_flush_style_submit()
Flushes collageformatter style images.
2 string references to 'collageformatter_flush_style_submit'
File
- ./
collageformatter.module, line 1075 - Main file for Collage Formatter module.
Code
function collageformatter_flush_style_submit() {
$style = image_style_load('collageformatter');
image_style_flush($style);
drupal_set_message(t('Style %style has been flushed.', array(
'%style' => 'collageformatter',
)));
}