@@ 416-424 (lines=9) @@ | ||
413 | $joinSteps = []; |
|
414 | $joinSteps[] = $step; |
|
415 | ||
416 | foreach ($currentSteps as $currentStep) { |
|
417 | if ($currentStep->getId() !== $step->getId()) { |
|
418 | $stepDesc = $wf->getStep($currentStep->getStepId()); |
|
419 | ||
420 | if ($stepDesc->resultsInJoin($join)) { |
|
421 | $joinSteps[] = $currentSteps; |
|
422 | } |
|
423 | } |
|
424 | } |
|
425 | ||
426 | $historySteps = $store->findHistorySteps($entry->getId()); |
|
427 | ||
@@ 428-436 (lines=9) @@ | ||
425 | ||
426 | $historySteps = $store->findHistorySteps($entry->getId()); |
|
427 | ||
428 | foreach ($historySteps as $historyStep) { |
|
429 | if ($historyStep->getId() !== $step->getId()) { |
|
430 | $stepDesc = $wf->getStep($historyStep->getStepId()); |
|
431 | ||
432 | if ($stepDesc->resultsInJoin($join)) { |
|
433 | $joinSteps[] = $currentSteps; |
|
434 | } |
|
435 | } |
|
436 | } |
|
437 | ||
438 | $jn = new JoinNodes($joinSteps); |
|
439 | $transientVars['jn'] = $jn; |