username.html.twig in Commerce Core 8.2
Default theme implementation for displaying a username in a mail.
Available variables:
- account: The full account information for the user.
- name: The user's name, sanitized.
- extra: Additional text to append to the user's name, sanitized.
- link_path: The path or URL of the user's profile page, home page, or other desired page to link to for more information about the user.
- link_options: Options to pass to the url() function's $options parameter if linking the user's name to the user's page.
- attributes: HTML attributes for the containing element.
See also
3 theme calls to username.html.twig
- MailHandlerThemeTest::testCustomTheme in tests/
src/ Kernel/ MailHandlerThemeTest.php - Tests the email with custom theme.
- MailHandlerThemeTest::testDefaultTheme in tests/
src/ Kernel/ MailHandlerThemeTest.php - Tests the email without a custom theme.
- OrderListBuilder::buildRow in modules/
order/ src/ OrderListBuilder.php - Builds a row for an entity in the entity listing.
File
tests/themes/commerce_test_theme/templates/username.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for displaying a username in a mail.
- *
- * Available variables:
- * - account: The full account information for the user.
- * - name: The user's name, sanitized.
- * - extra: Additional text to append to the user's name, sanitized.
- * - link_path: The path or URL of the user's profile page, home page,
- * or other desired page to link to for more information about the user.
- * - link_options: Options to pass to the url() function's $options parameter if
- * linking the user's name to the user's page.
- * - attributes: HTML attributes for the containing element.
- *
- * @see template_preprocess_username()
- *
- * @ingroup themeable
- */
- #}
- <p>Commerce test theme</p>
- {% if link_path -%}
- <a{{ attributes }}>{{ name }}{{ extra }}</a>
- {%- else -%}
- <span{{ attributes }}>{{ name }}{{ extra }}</span>
- {%- endif -%}