You are here

function imagick_theme in Imagick 7

Implements hook_theme().

File

./imagick.module, line 62
Imagick toolkit for image manipulation within Drupal.

Code

function imagick_theme() {
  return array(
    'imagick_style_preview' => array(
      'variables' => array(
        'style' => NULL,
        'combined' => NULL,
      ),
      'file' => 'includes/imagick.theme.inc',
    ),
    'imagick_convolve_summary' => array(
      'variables' => array(
        'data' => NULL,
      ),
    ),
  );
}