function textimage_image_style_flush in Textimage 7.3
Same name and namespace in other branches
- 8.4 textimage.module \textimage_image_style_flush()
- 8.3 textimage.module \textimage_image_style_flush()
Implements hook_image_style_flush().
File
- ./
textimage.module, line 380 - Textimage - Provides text to image manipulations.
Code
function textimage_image_style_flush($style) {
// Manage the textimage part of style flushing.
if (TextimageStyles::isTextimage($style)) {
TextimageStyles::flush($style);
}
}