You are here

private function Flowchart::processConnections in Business Rules 8

Same name and namespace in other branches
  1. 2.x 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\Flowchart

Code

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);
  }
}