You are here

uploadfield.theme.inc in Video 6.5

Same filename and directory in other branches
  1. 6.4 types/uploadfield/uploadfield.theme.inc

Theme functions for the uploadfield module.

File

types/uploadfield/uploadfield.theme.inc
View source
<?php

/**
 * @file
 * Theme functions for the uploadfield 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);
}

Functions

Namesort descending Description
theme_uploadfield_widget FormAPI theme function. Theme the output of an video upload field.
theme_uploadfield_widget_item