1.20.x file.theme.inc theme_file_widget($variables)

Returns HTML for an individual file upload widget.

Parameters

$variables: An associative array containing:

  • element: A render element representing the widget.

Related topics

File

modules/file/file.theme.inc, line 132
Theme functions for the File module.

Code

function theme_file_widget($variables) {
  $element = $variables['element'];
  $output = '';

  // The "form-managed-file" class is required for proper Ajax functionality.
  $output .= '<div class="file-widget form-managed-file clearfix">';
  if ($element['fid']['#value'] != 0) {
    // Add the file size after the file name.
    $element['filename']['#markup'] .= ' <span class="file-size">(' . format_size($element['#file']->filesize) . ')</span> ';
  }
  $output .= backdrop_render_children($element);
  $output .= '</div>';

  return $output;
}