function theme_imagecache_alpha in ImageCache Actions 6
Same name and namespace in other branches
- 5.3 transparency.inc \theme_imagecache_alpha()
- 5.2 transparency.inc \theme_imagecache_alpha()
- 6.2 coloractions/transparency.inc \theme_imagecache_alpha()
Implementation of theme_hook() for imagecache_ui.module
File
- ./
transparency.inc, line 62 - Helper functions for the alpha action for imagecache
Code
function theme_imagecache_alpha($element) {
return ($element['#value']['flatten'] ? t("Flatten") : t("Transparent")) . " : " . theme_imagecacheactions_rgb($element['#value']['RGB']);
}