You are here

public function Job::getCountReviewed in Translation Management Tool 8

Sums up all reviewed counts of this jobs job items.

Return value

int The sum of all reviewed data items.

Overrides JobInterface::getCountReviewed

File

src/Entity/Job.php, line 850

Class

Job
Entity class for the tmgmt_job entity.

Namespace

Drupal\tmgmt\Entity

Code

public function getCountReviewed() {
  return tmgmt_job_statistic($this, 'count_reviewed');
}