aboutsummaryrefslogtreecommitdiff
path: root/types/uploadfield/uploadfield.theme.inc
blob: 5a81efd6eef453954077c064db207858738f4a37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
//$Id$
/**
 * 
 * @file
 * Theme functions for the videoftp module.
 */

/**
 * FormAPI theme function. Theme the output of an video upload field.
 */
function theme_uploadfield_widget($element) {
  return theme('form_element', $element, $element['#children']);
}

function theme_uploadfield_widget_item($element) {
  return theme('filefield_widget_item', $element);
}