1 image_example.module theme_image_example_colorize_summary($variables)

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

modules/examples/image_example/image_example.module, line 308
Hooks implementations for the Image Example module.

Code

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