You are here

function imagefield_crop_theme in Imagefield Crop 7.2

Same name and namespace in other branches
  1. 6 imagefield_crop.module \imagefield_crop_theme()
  2. 7.3 imagefield_crop.module \imagefield_crop_theme()
  3. 7 imagefield_crop.module \imagefield_crop_theme()

Implements hook_theme().

File

./imagefield_crop.module, line 871
Functionality and Drupal hook implementations for the Imagefield Crop module.

Code

function imagefield_crop_theme() {
  return array(
    'imagefield_crop_widget' => array(
      'render element' => 'element',
    ),
    'imagefield_crop_preview' => array(
      'render element' => 'element',
    ),
  );
}