| Versions | |
|---|---|
| 7 | theme_image_example_colorize_summary($variables) |
Formats a summary of an image colorize effect.
$variables An associative array containing:
examples/
<?php
function theme_image_example_colorize_summary($variables) {
$data = $variables['data'];
return t('as color #@color.', array('@color' => $data['color']));
}
?>