file-managed-file.html.twig in Drupal 10
Same filename in this branch
- 10 core/modules/file/templates/file-managed-file.html.twig
- 10 core/themes/starterkit_theme/templates/content-edit/file-managed-file.html.twig
- 10 core/themes/classy/templates/content-edit/file-managed-file.html.twig
- 10 core/themes/claro/templates/content-edit/file-managed-file.html.twig
- 10 core/themes/stable9/templates/content-edit/file-managed-file.html.twig
- 10 core/themes/stable/templates/content-edit/file-managed-file.html.twig
- 10 core/themes/seven/templates/classy/content-edit/file-managed-file.html.twig
- 10 core/themes/bartik/templates/classy/content-edit/file-managed-file.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/file-managed-file.html.twig
Same filename and directory in other branches
Theme override to display a file form widget.
Available variables:
- element: Form element for the file upload.
- attributes: HTML attributes for the containing element.
See also
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/themes/stable/templates/content-edit/file-managed-file.html.twigView source
- {#
- /**
- * @file
- * Theme override to display a file form widget.
- *
- * Available variables:
- * - element: Form element for the file upload.
- * - attributes: HTML attributes for the containing element.
- *
- * @see template_preprocess_file_managed_file()
- */
- #}
- {%
- set classes = [
- 'js-form-managed-file',
- 'form-managed-file',
- ]
- %}
- <div{{ attributes.addClass(classes) }}>
- {{ element }}
- </div>