You are here

function template_preprocess_forum_submitted in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/forum/forum.module \template_preprocess_forum_submitted()
  2. 6 modules/forum/forum.module \template_preprocess_forum_submitted()
  3. 7 modules/forum/forum.module \template_preprocess_forum_submitted()
  4. 9 core/modules/forum/forum.module \template_preprocess_forum_submitted()

Prepares variables for forum submission information templates.

The submission information will be displayed in the forum list and topic list.

Default template: forum-submitted.html.twig.

Parameters

array $variables: An array containing the following elements:

  • topic: The topic object.

File

core/modules/forum/forum.module, line 638
Provides discussion forums.

Code

function template_preprocess_forum_submitted(&$variables) {
  $variables['author'] = '';
  if (isset($variables['topic']->uid)) {
    $username = [
      '#theme' => 'username',
      '#account' => User::load($variables['topic']->uid),
    ];
    $variables['author'] = \Drupal::service('renderer')
      ->render($username);
  }
  $variables['time'] = isset($variables['topic']->created) ? \Drupal::service('date.formatter')
    ->formatTimeDiffSince($variables['topic']->created) : '';
}