function tmgmt_smartling_skip_passed_job_item_processing in TMGMT Translator Smartling 8.4
1 call to tmgmt_smartling_skip_passed_job_item_processing()
File
- ./
tmgmt_smartling.module, line 129 - Contains
Code
function tmgmt_smartling_skip_passed_job_item_processing(JobItemInterface $current_job_item, JobItemInterface $passed_job_item = NULL) {
return !empty($passed_job_item) && $current_job_item
->id() != $passed_job_item
->id();
}