function uploadfield_theme in Video 6.4
Same name and namespace in other branches
- 6.5 types/uploadfield/uploadfield.module \uploadfield_theme()
- 6.3 types/uploadfield/uploadfield.module \uploadfield_theme()
Implementation of hook_theme().
File
- types/
uploadfield/ uploadfield.module, line 13
Code
function uploadfield_theme() {
$theme = array();
$theme['uploadfield_widget'] = array(
'arguments' => array(
'element' => NULL,
),
'file' => 'uploadfield.theme.inc',
);
$theme['uploadfield_widget_item'] = array(
'arguments' => array(
'element' => NULL,
),
'file' => 'uploadfield.theme.inc',
);
return $theme;
}