public function Transaction::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Database/Transaction.php \Drupal\Core\Database\Transaction::__construct()
File
- core/lib/ Drupal/ Core/ Database/ Transaction.php, line 53 
- Contains \Drupal\Core\Database\Transaction.
Class
- Transaction
- A wrapper class for creating and managing database transactions.
Namespace
Drupal\Core\DatabaseCode
public function __construct(Connection $connection, $name = NULL) {
  $this->connection = $connection;
  // If there is no transaction depth, then no transaction has started. Name
  // the transaction 'drupal_transaction'.
  if (!($depth = $connection
    ->transactionDepth())) {
    $this->name = 'drupal_transaction';
  }
  elseif (!$name) {
    $this->name = 'savepoint_' . $depth;
  }
  else {
    $this->name = $name;
  }
  $this->connection
    ->pushTransaction($this->name);
}