file-link.html.twig
Same filename in this branch
- 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/field/file-link.html.twig
- 8.9.x core/themes/seven/templates/classy/field/file-link.html.twig
- 8.9.x core/themes/claro/templates/field/file-link.html.twig
- 8.9.x core/themes/bartik/templates/classy/field/file-link.html.twig
- 8.9.x core/themes/stable/templates/field/file-link.html.twig
- 8.9.x core/themes/classy/templates/field/file-link.html.twig
Same filename in other branches
- 9 core/profiles/demo_umami/themes/umami/templates/components/field/file-link.html.twig
- 9 core/themes/stable9/templates/field/file-link.html.twig
- 9 core/themes/seven/templates/field/file-link.html.twig
- 9 core/themes/claro/templates/field/file-link.html.twig
- 9 core/themes/bartik/templates/field/file-link.html.twig
- 9 core/themes/stable/templates/field/file-link.html.twig
- 9 core/themes/starterkit_theme/templates/field/file-link.html.twig
- 9 core/themes/classy/templates/field/file-link.html.twig
- 9 core/modules/file/templates/file-link.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/components/field/file-link.html.twig
- 10 core/themes/stable9/templates/field/file-link.html.twig
- 10 core/themes/claro/templates/field/file-link.html.twig
- 10 core/themes/starterkit_theme/templates/field/file-link.html.twig
- 10 core/modules/file/templates/file-link.html.twig
- 11.x core/profiles/demo_umami/themes/umami/templates/components/field/file-link.html.twig
- 11.x core/themes/stable9/templates/field/file-link.html.twig
- 11.x core/themes/claro/templates/field/file-link.html.twig
- 11.x core/themes/starterkit_theme/templates/field/file-link.html.twig
- 11.x core/modules/file/templates/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 - Builds a renderable array for a field value.
- 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 - Builds a renderable array for a field value.
File
-
core/
modules/ file/ templates/ file-link.html.twig
View source
- {#
- /**
- * @file
- * 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 template_preprocess_file_link()
- *
- * @ingroup themeable
- */
- #}
- <span{{ attributes }}>{{ link }}</span>
- {% if file_size %}
- {# @todo remove class before Drupal 9.0.0 #}
- <span class="file-size">({{ file_size }})</span>
- {% endif %}
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.