Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

file-managed-file.html.twig

Same filename in this branch
  1. 11.1.x core/themes/stable9/templates/content-edit/file-managed-file.html.twig
  2. 11.1.x core/themes/starterkit_theme/templates/content-edit/file-managed-file.html.twig
  3. 11.1.x core/themes/claro/templates/content-edit/file-managed-file.html.twig
  4. 11.1.x core/modules/file/templates/file-managed-file.html.twig

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

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/profiles/demo_umami/themes/umami/templates/classy/content-edit/file-managed-file.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  13. {{ attach_library('umami/classy.file') }}
  14. {%
  15. set classes = [
  16. 'js-form-managed-file',
  17. 'form-managed-file',
  18. ]
  19. %}
  20. <div{{ attributes.addClass(classes) }}>
  21. {{ element }}
  22. </div>
RSS feed
Powered by Drupal