function theme_canvasactions_imagemask_summary in ImageCache Actions 7
Same name and namespace in other branches
- 8 canvasactions/canvasactions.inc \theme_canvasactions_imagemask_summary()
Implements theme_hook() for the image mask effect summary.
Parameters
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
- canvasactions/
canvasactions.inc, line 63
Code
function theme_canvasactions_imagemask_summary(array $variables) {
$data = $variables['data'];
return 'file: ' . $data['path'];
}