public function TagsCount::render

File

src/Plugin/views/field/TagsCount.php, line 17

Class

TagsCount
Field handler which shows the HTML tags count for a job or job item.

Namespace

Drupal\tmgmt\Plugin\views\field

Code

public function render(ResultRow $values) {
  $entity = $this
    ->getEntity($values);
  return $entity
    ->getTagsCount();
}