user_hooks_test.module in Drupal 10
Same filename and directory in other branches
Support module for user hooks testing.
File
core/modules/user/tests/modules/user_hooks_test/user_hooks_test.moduleView source
<?php
/**
* @file
* Support module for user hooks testing.
*/
use Drupal\Component\Render\FormattableMarkup;
use Drupal\Core\Session\AccountInterface;
/**
* Implements hook_user_format_name_alter().
*/
function user_hooks_test_user_format_name_alter(&$name, AccountInterface $account) {
if (\Drupal::state()
->get('user_hooks_test_user_format_name_alter', FALSE)) {
if (\Drupal::state()
->get('user_hooks_test_user_format_name_alter_safe', FALSE)) {
$name = new FormattableMarkup('<em>@uid</em>', [
'@uid' => $account
->id(),
]);
}
else {
$name = '<em>' . $account
->id() . '</em>';
}
}
}
Functions
Name | Description |
---|---|
user_hooks_test_user_format_name_alter | Implements hook_user_format_name_alter(). |