You are here

function uploadfield_theme in Video 6.5

Same name and namespace in other branches
  1. 6.3 types/uploadfield/uploadfield.module \uploadfield_theme()
  2. 6.4 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;
}