Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. StatisticsLastCommentName.php

function StatisticsLastCommentName::render

Overrides FieldPluginBase::render

File

core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php, line 81

Class

StatisticsLastCommentName
Field handler to present the name of the last comment poster.

Namespace

Drupal\comment\Plugin\views\field

Code

public function render(ResultRow $values) {
    if (!empty($this->options['link_to_user'])) {
        $account = User::create();
        $account->name = $this->getValue($values);
        $account->uid = $values->{$this->uid};
        $username = [
            '#theme' => 'username',
            '#account' => $account,
        ];
        return \Drupal::service('renderer')->render($username);
    }
    else {
        return $this->sanitizeValue($this->getValue($values));
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal