1 image_example.module image_example_theme()

Implements hook_theme().

Related topics

File

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

Code

function image_example_theme() {
  return array(
    'image_example_colorize_summary' => array(
      'variables' => array('data' => NULL),
    ),
    'image_example_image' => array(
      'variables' => array('image' => NULL, 'style' => NULL),
      'file' => 'image_example.pages.inc',
    ),
  );
}