Field handler which shows the word count for a job or job item.
@ViewsField("tmgmt_local_wordcount");
Expanded class hierarchy of WordCount
class WordCount extends StatisticsBase {
/**
* {@inheritdoc}
*/
public function render(ResultRow $values) {
/** @var \Drupal\tmgmt_local\LocalTaskInterface $entity */
$entity = $values->_entity;
return $entity
->getWordCount();
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
StatisticsBase:: |
public | function | Prefetch statistics for all jobs. | |
WordCount:: |
public | function |