function theme_file_icon
Returns HTML for an image with an appropriate icon for the given file.
Parameters
$variables: An associative array containing:
- file: A file object for which to make an icon.
- icon_directory: (optional) A path to a directory of icons to be used for files. Defaults to the value of the "file_icon_directory" variable.
Related topics
1 theme call to theme_file_icon()
- theme_file_link in drupal-7.x/
modules/ file/ file.module - Returns HTML for a link to a file.
Archivo
- drupal-7.x/
modules/ file/ file.module, line 761 - Defines a "managed_file" Form API field and a "file" field for Field module.
Código
function theme_file_icon($variables) {
$file = $variables['file'];
$icon_directory = $variables['icon_directory'];
$mime = check_plain($file->filemime);
$icon_url = file_icon_url($file, $icon_directory);
return '<img class="file-icon" alt="" title="' . $mime . '" src="' . $icon_url . '" />';
}