| 7 image_example.module | theme_image_example_colorize_summary($variables) |
| 8 image_example.module | 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
File
- image_example/
image_example.module, line 374 - 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']));
}
Login or register to post comments