theme_image_example_colorize_summary

  1. drupal
    1. 7
Versions
7 theme_image_example_colorize_summary($variables)

Formats a summary of an image colorize effect.

Parameters

$variables An associative array containing:

  • data: The current configuration for this colorize effect.

Related topics

Code

examples/image_example/image_example.module, line 370

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