Formats a summary of an image colorize effect.

Parameters

array $variables: An associative array containing:

  • data: The current configuration for this colorize effect.

Related topics

File

image_example/image_example.module, line 372
Module file for image_example

Code

function theme_image_example_colorize_summary($variables) {
  $data = $variables['data'];
  return t('as color #@color.', array(
    '@color' => $data['color'],
  ));
}