file-link.html.twig

Default theme implementation for a link to a file.

Available variables:

  • attributes: The HTML attributes for the containing element.
  • link: A link to the file.
  • file_size: The size of the file.

See also

template_preprocess_file_link()

4 theme calls to file-link.html.twig
FileFieldDisplayTest::testNodeDisplay in core/modules/file/tests/src/Functional/FileFieldDisplayTest.php
Tests normal formatter display on node display.
GenericFileFormatter::viewElements in core/modules/file/src/Plugin/Field/FieldFormatter/GenericFileFormatter.php
ManagedFile::processManagedFile in core/modules/file/src/Element/ManagedFile.php
Render API callback: Expands the managed_file element type.
TableFormatter::viewElements in core/modules/file/src/Plugin/Field/FieldFormatter/TableFormatter.php

File

core/modules/file/templates/file-link.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a link to a file.
  5. *
  6. * Available variables:
  7. * - attributes: The HTML attributes for the containing element.
  8. * - link: A link to the file.
  9. * - file_size: The size of the file.
  10. *
  11. * @see template_preprocess_file_link()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. <span{{ attributes }}>{{ link }}</span>
  17. {% if file_size %}
  18. {# @todo remove class before Drupal 9.0.0 #}
  19. <span class="file-size">({{ file_size }})</span>
  20. {% endif %}

Related topics


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