function theme_file_managed_file

Returns HTML for a managed file element.

Parameters

$variables: An associative array containing:

  • element: A render element representing the file.

Related topics

1 theme call to theme_file_managed_file()
file_element_info in drupal/core/modules/file/file.module
Implements hook_element_info().

File

drupal/core/modules/file/file.module, line 1224
Defines a "managed_file" Form API field and a "file" field for Field module.

Code

function theme_file_managed_file($variables) {
  $element = $variables['element'];
  $attributes = array();
  if (isset($element['#id'])) {
    $attributes['id'] = $element['#id'];
  }
  if (!empty($element['#attributes']['class'])) {
    $attributes['class'] = (array) $element['#attributes']['class'];
  }
  $attributes['class'][] = 'form-managed-file';

  // This wrapper is required to apply JS behaviors and CSS styling.
  $output = '';
  $output .= '<div' . new Attribute($attributes) . '>';
  $output .= drupal_render_children($element);
  $output .= '</div>';
  return $output;
}