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 entity 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 "icon.directory" variable.

Related topics

2 theme calls to theme_file_icon()
FileMime::render in drupal/core/modules/file/lib/Drupal/file/Plugin/views/field/FileMime.php
Render the field.
theme_file_link in drupal/core/modules/file/file.module
Returns HTML for a link to a file.

File

drupal/core/modules/file/file.module, line 1279
Defines a "managed_file" Form API field and a "file" field for Field module.

Code

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 . '" />';
}