function theme_imagecache_customactions in ImageCache Actions 6
Same name and namespace in other branches
- 6.2 customactions/imagecache_customactions.module \theme_imagecache_customactions()
Implementation of theme_hook() for imagecache_ui.module
File
- ./
imagecache_customactions.module, line 134 - Allow advanced users to code their own PHP image manipulation routines as part of imagecache processing.
Code
function theme_imagecache_customactions($element) {
$data = $element['#value'];
return "<em><strong>" . $data['text'] . "</strong></em>";
}