@@ 403-411 (lines=9) @@ | ||
400 | $joinSteps = []; |
|
401 | $joinSteps[] = $step; |
|
402 | ||
403 | foreach ($currentSteps as $currentStep) { |
|
404 | if ($currentStep->getId() !== $step->getId()) { |
|
405 | $stepDesc = $wf->getStep($currentStep->getStepId()); |
|
406 | ||
407 | if ($stepDesc->resultsInJoin($join)) { |
|
408 | $joinSteps[] = $currentSteps; |
|
409 | } |
|
410 | } |
|
411 | } |
|
412 | ||
413 | $historySteps = $store->findHistorySteps($entry->getId()); |
|
414 | ||
@@ 415-423 (lines=9) @@ | ||
412 | ||
413 | $historySteps = $store->findHistorySteps($entry->getId()); |
|
414 | ||
415 | foreach ($historySteps as $historyStep) { |
|
416 | if ($historyStep->getId() !== $step->getId()) { |
|
417 | $stepDesc = $wf->getStep($historyStep->getStepId()); |
|
418 | ||
419 | if ($stepDesc->resultsInJoin($join)) { |
|
420 | $joinSteps[] = $currentSteps; |
|
421 | } |
|
422 | } |
|
423 | } |
|
424 | ||
425 | $jn = new JoinNodes($joinSteps); |
|
426 | $transientVars['jn'] = $jn; |