function template_preprocess_file_link

Same name and namespace in other branches
  1. 8.9.x core/modules/file/file.module \template_preprocess_file_link()
  2. 10 core/modules/file/file.module \template_preprocess_file_link()
  3. 11.x core/modules/file/file.module \template_preprocess_file_link()

Prepares variables for file link templates.

Default template: file-link.html.twig.

Parameters

array $variables: An associative array containing:

  • file: A File entity to which the link will be created.
  • icon_directory: (optional) A path to a directory of icons to be used for files. Defaults to the value of the "icon.directory" variable.
  • description: A description to be displayed instead of the filename.
  • attributes: An associative array of attributes to be placed in the a tag.

File

core/modules/file/file.module, line 1498

Code

function template_preprocess_file_link(&$variables) {
    $file = $variables['file'];
    $options = [];
    
    /** @var \Drupal\Core\File\FileUrlGeneratorInterface $file_url_generator */
    $file_url_generator = \Drupal::service('file_url_generator');
    $url = $file_url_generator->generate($file->getFileUri());
    $mime_type = $file->getMimeType();
    $options['attributes']['type'] = $mime_type;
    // Use the description as the link text if available.
    if (empty($variables['description'])) {
        $link_text = $file->getFilename();
    }
    else {
        $link_text = $variables['description'];
        $options['attributes']['title'] = $file->getFilename();
    }
    // Classes to add to the file field for icons.
    $classes = [
        'file',
        // Add a specific class for each and every mime type.
'file--mime-' . strtr($mime_type, [
            '/' => '-',
            '.' => '-',
        ]),
        // Add a more general class for groups of well known MIME types.
'file--' . file_icon_class($mime_type),
    ];
    // Set file classes to the options array.
    $variables['attributes'] = new Attribute($variables['attributes']);
    $variables['attributes']->addClass($classes);
    $variables['file_size'] = format_size($file->getSize() ?? 0);
    $variables['link'] = Link::fromTextAndUrl($link_text, $url->mergeOptions($options))
        ->toRenderable();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.