You are here

function theme_canvasactions_blur_summary in ImageCache Actions 7

Same name and namespace in other branches
  1. 8 canvasactions/canvasactions.inc \theme_canvasactions_blur_summary()

Implements theme_hook() for the underlay (background) 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 1135

Code

function theme_canvasactions_blur_summary($variables) {
  return t('Intensity: @intensity', array(
    '@intensity' => $variables['data']['intensity'],
  ));
}