1 form.inc | theme_file($variables) |
Returns HTML for a file upload form element.
For assistance with handling the uploaded file correctly, see the API provided by file.inc.
Parameters
$variables: An associative array containing:
- element: An associative array containing the properties of the element. Properties used: #title, #name, #size, #description, #required, #attributes.
Related topics
File
- core/
includes/ form.inc, line 4846 - Functions for form and batch generation and processing.
Code
function theme_file($variables) {
$element = $variables['element'];
$element['#attributes']['type'] = 'file';
element_set_attributes($element, array('id', 'name', 'size'));
_form_set_class($element, array('form-file'));
return '<input' . backdrop_attributes($element['#attributes']) . ' />';
}