Same filename in this branch
  1. 10 core/modules/file/templates/file-managed-file.html.twig
  2. 10 core/themes/claro/templates/content-edit/file-managed-file.html.twig
  3. 10 core/themes/stable9/templates/content-edit/file-managed-file.html.twig
  4. 10 core/themes/starterkit_theme/templates/content-edit/file-managed-file.html.twig
  5. 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/file-managed-file.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/file/templates/file-managed-file.html.twig
  2. 9 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