You are here

function theme_canvasactions_source2canvas in ImageCache Actions 5.2

Same name and namespace in other branches
  1. 5.3 canvasactions.inc \theme_canvasactions_source2canvas()
  2. 6.2 canvasactions/canvasactions.inc \theme_canvasactions_source2canvas()
  3. 6 canvasactions.inc \theme_canvasactions_source2canvas()

Implementation of theme_hook() for imagecache_ui.module

File

./canvasactions.inc, line 391

Code

function theme_canvasactions_source2canvas($element) {
  $data = $element['#value'];
  return 'xpos:' . $data['xpos'] . ', ypos:' . $data['ypos'] . ' alpha:' . $data['alpha'] . '%';
}