On this page
function theme_file_managed_file
theme_file_managed_file($variables)
Returns HTML for a managed file element.
Parameters
$variables: An associative array containing:
- element: A render element representing the file.
Related topics
File
- modules/file/file.module, line 711
- 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' . drupal_attributes($attributes) . '>';
$output .= drupal_render_children($element);
$output .= '</div>';
return $output;
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!file!file.module/function/theme_file_managed_file/7.x