public function Job::getWordCount in Translation Management Tool 8
Sums up all word counts of this jobs job items.
Return value
int The total word count of this job.
Overrides JobInterface::getWordCount
File
- src/
Entity/ Job.php, line 857
Class
- Job
- Entity class for the tmgmt_job entity.
Namespace
Drupal\tmgmt\EntityCode
public function getWordCount() {
return tmgmt_job_statistic($this, 'word_count');
}