| 5 form.inc | theme_file($element) |
| 6 form.inc | theme_file( |
| 7 form.inc | theme_file($variables) |
| 8 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
4 theme calls to theme_file()
File
- includes/
form.inc, line 3925 - 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' . drupal_attributes($element['#attributes']) . ' />';
}
Login or register to post comments