file-managed-file.html.twig

Same filename in this branch
  1. 11.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/file-managed-file.html.twig
  2. 11.x core/themes/stable9/templates/content-edit/file-managed-file.html.twig
  3. 11.x core/themes/claro/templates/content-edit/file-managed-file.html.twig
  4. 11.x core/themes/starterkit_theme/templates/content-edit/file-managed-file.html.twig
Same filename and directory in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/file-managed-file.html.twig
  2. 9 core/themes/stable9/templates/content-edit/file-managed-file.html.twig
  3. 9 core/themes/seven/templates/classy/content-edit/file-managed-file.html.twig
  4. 9 core/themes/claro/templates/content-edit/file-managed-file.html.twig
  5. 9 core/themes/bartik/templates/classy/content-edit/file-managed-file.html.twig
  6. 9 core/themes/stable/templates/content-edit/file-managed-file.html.twig
  7. 9 core/themes/starterkit_theme/templates/content-edit/file-managed-file.html.twig
  8. 9 core/themes/classy/templates/content-edit/file-managed-file.html.twig
  9. 9 core/modules/file/templates/file-managed-file.html.twig
  10. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/file-managed-file.html.twig
  11. 8.9.x core/themes/seven/templates/classy/content-edit/file-managed-file.html.twig
  12. 8.9.x core/themes/claro/templates/content-edit/file-managed-file.html.twig
  13. 8.9.x core/themes/bartik/templates/classy/content-edit/file-managed-file.html.twig
  14. 8.9.x core/themes/stable/templates/content-edit/file-managed-file.html.twig
  15. 8.9.x core/themes/classy/templates/content-edit/file-managed-file.html.twig
  16. 8.9.x core/modules/file/templates/file-managed-file.html.twig
  17. 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/file-managed-file.html.twig
  18. 10 core/themes/stable9/templates/content-edit/file-managed-file.html.twig
  19. 10 core/themes/claro/templates/content-edit/file-managed-file.html.twig
  20. 10 core/themes/starterkit_theme/templates/content-edit/file-managed-file.html.twig
  21. 10 core/modules/file/templates/file-managed-file.html.twig

Default theme implementation to display a file form widget.

Available variables:

  • element: Form element for the file upload.
  • attributes: HTML attributes for the containing element.

See also

template_preprocess_file_managed_file()

1 theme call to file-managed-file.html.twig
ManagedFile::getInfo in core/modules/file/src/Element/ManagedFile.php
Returns the element properties for this element.

File

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

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a file form widget.
  5. *
  6. * Available variables:
  7. * - element: Form element for the file upload.
  8. * - attributes: HTML attributes for the containing element.
  9. *
  10. * @see template_preprocess_file_managed_file()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. {%
  16. set classes = [
  17. 'js-form-managed-file',
  18. 'form-managed-file',
  19. ]
  20. %}
  21. <div{{ attributes.addClass(classes) }}>
  22. {{ element }}
  23. </div>

Related topics


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