private function Flowchart::processConnections in Business Rules 2.x
Same name and namespace in other branches
- 8 src/Util/Flowchart/Flowchart.php \Drupal\business_rules\Util\Flowchart\Flowchart::processConnections()
Process the graph connections.
Parameters
array $cells: The matrix cells with elements.
1 call to Flowchart::processConnections()
- Flowchart::processMatrix in src/
Util/ Flowchart/ Flowchart.php - Process the matrix.
File
- src/
Util/ Flowchart/ Flowchart.php, line 321
Class
- Flowchart
- Class Flowchart.
Namespace
Drupal\business_rules\Util\FlowchartCode
private function processConnections(array $cells) {
foreach ($cells as $cell) {
/** @var \Drupal\business_rules\Util\Flowchart\Element $element */
$element = $cell['element'];
$originUUid = $this
->getOriginUuid($cell);
$element
->setOriginUuid($originUUid);
}
}