1 file.theme.inc theme_file_icon($variables)

Returns HTML for an image with an appropriate icon for the given file.

Parameters

$variables: An associative array containing:

  • file: A file entity for which to make an icon.
  • alt: (optional) The alternative text to represent the icon in text-based browsers. Defaults to an empty string.
  • 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

File

core/modules/file/file.theme.inc, line 119
Theme functions for the File module.

Code

function theme_file_icon($variables) {
  $file = $variables['file'];
  $alt = $variables['alt'];
  $icon_directory = $variables['icon_directory'];

  $mime = check_plain($file->filemime);
  $icon_url = file_icon_url($file, $icon_directory);
  return '<img class="file-icon" alt="' . check_plain($alt) . '" title="' . $mime . '" src="' . $icon_url . '" />';
}