You are here

function theme_coloractions_brightness_summary in ImageCache Actions 7

Same name and namespace in other branches
  1. 8 coloractions/imagecache_coloractions.module \theme_coloractions_brightness_summary()

Implements theme_hook() for the brightness 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

coloractions/imagecache_coloractions.module, line 593

Code

function theme_coloractions_brightness_summary(array $variables) {
  return t("Adjust") . " : " . $variables['data']['filter_arg1'];
}