public function FileCount::render

File

src/Plugin/views/field/FileCount.php, line 18

Class

FileCount
Field handler which shows the file 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
    ->getFileCount();
}