public function Job::getConflictingItemIds in Translation Management Tool 8
Returns conflicting job item IDs.
Conflicting job items are those that already have an identical item in another job that is not yet finished.
Return value
int[] List of conflicting job item IDs.
Overrides JobInterface::getConflictingItemIds
File
- src/
Entity/ Job.php, line 1030
Class
- Job
- Entity class for the tmgmt_job entity.
Namespace
Drupal\tmgmt\EntityCode
public function getConflictingItemIds() {
return array_keys($this
->getConflictingItems());
}