function theme_imagefield_crop_cropbox in Imagefield Crop 6
1 theme call to theme_imagefield_crop_cropbox()
File
- ./
imagefield_crop_widget.inc, line 274
Code
function theme_imagefield_crop_cropbox($file = NULL, $alt = '', $title = '', $attributes = NULL, $getsize = TRUE, $id) {
$attributes = array_merge((array) $attributes + array(
'class' => 'cropbox',
'id' => $id,
));
$output = theme('imagefield_image', $file, $alt, $title, $attributes, $getsize);
$element = array(
'#type' => 'element',
'#title' => t('Crop area'),
'#id' => $id,
);
return theme('form_element', $element, $output);
}