function imagefield_crop_theme in Imagefield Crop 7
Same name and namespace in other branches
- 6 imagefield_crop.module \imagefield_crop_theme()
- 7.3 imagefield_crop.module \imagefield_crop_theme()
- 7.2 imagefield_crop.module \imagefield_crop_theme()
Implements hook_theme().
File
- ./
imagefield_crop.module, line 501 - Provide a widget to crop uploaded image.
Code
function imagefield_crop_theme() {
return array(
'imagefield_crop_widget' => array(
'render element' => 'element',
'file' => 'imagefield_crop.theme.inc',
),
'imagefield_crop_preview' => array(
'render element' => 'element',
'file' => 'imagefield_crop.theme.inc',
),
);
}