function theme_imagecache_customactions_summary in ImageCache Actions 7
Same name and namespace in other branches
- 8 customactions/imagecache_customactions.module \theme_imagecache_customactions_summary()
Implements theme_hook() for the custom action effect summary.
param array $variables An associative array containing:
- data: The current configuration for this image effect.
Return value
string The HTML for the summary of this image effect.
File
- customactions/
imagecache_customactions.module, line 145 - Allows advanced users to code their own PHP image manipulation routines as part of image style processing.
Code
function theme_imagecache_customactions_summary() {
return 'Custom PHP code';
}