function dragndrop_upload_image_theme in Drag & Drop Upload 7
Implements hook_theme().
File
- modules/
dragndrop_upload_image/ dragndrop_upload_image.module, line 11 - Provides Drag & Drop Upload widget for an Image field.
Code
function dragndrop_upload_image_theme($existing, $type, $theme, $path) {
return array(
'dnd_upload_droppable_area_image' => array(
'render element' => 'element',
'template' => 'dnd-upload-droppable-area-image',
'path' => $path . '/templates',
),
);
}