template_preprocess_forum_submitted

template_preprocess_forum_submitted(&$variables)

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 635
Provides discussion forums.

Code

function template_preprocess_forum_submitted(&$variables) {
  $variables['author'] = '';
  if (isset($variables['topic']->uid)) {
    $username = array('#theme' => 'username', '#account' => User::load($variables['topic']->uid));
    $variables['author'] = drupal_render($username);
  }
  $variables['time'] = isset($variables['topic']->created) ? \Drupal::service('date.formatter')->formatTimeDiffSince($variables['topic']->created) : '';
}
doc_Drupal
2016-10-29 09:46:42
Comments
Leave a Comment

Please login to continue.