username.html.twig in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
Default theme implementation for displaying a username.
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
18 theme calls to username.html.twig
- AuthorFormatter::viewElements in core/
modules/ user/ src/ Plugin/ Field/ FieldFormatter/ AuthorFormatter.php - Builds a renderable array for a field value.
- AuthorNameFormatter::viewElements in core/
modules/ comment/ src/ Plugin/ Field/ FieldFormatter/ AuthorNameFormatter.php - Builds a renderable array for a field value.
- BreakLockForm::getDescription in core/
modules/ views_ui/ src/ Form/ BreakLockForm.php - Returns additional text to display as a description.
- CommentAdminOverview::buildForm in core/
modules/ comment/ src/ Form/ CommentAdminOverview.php - Form constructor for the comment overview administration form.
- DbLogController::eventDetails in core/
modules/ dblog/ src/ Controller/ DbLogController.php - Displays details about a specific database log message.
File
core/modules/user/templates/username.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for displaying a username.
- *
- * 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
- */
- #}
- {% if link_path -%}
- <a{{ attributes }}>{{ name }}{{ extra }}</a>
- {%- else -%}
- <span{{ attributes }}>{{ name }}{{ extra }}</span>
- {%- endif -%}