function JobItemType::render

File

src/Plugin/views/field/JobItemType.php, line 15

Class

JobItemType
Field handler which shows the operations for a job.

Namespace

Drupal\tmgmt\Plugin\views\field

Code

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