You are here

function theme_imagecache_customactions in ImageCache Actions 6.2

Same name and namespace in other branches
  1. 6 imagecache_customactions.module \theme_imagecache_customactions()

Implementation of theme_hook() for imagecache_ui.module

File

customactions/imagecache_customactions.module, line 153
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>";
}