# storeengine/2.2.0/includes/sql-transaction.php

StoreEngine — Complete eCommerce Solution with Memberships, Licensing, Affiliates &amp; More, version 2.2.0. 154 lines.

- Page: https://pluginprobe.com/plugins/storeengine/2.2.0/code/includes/sql-transaction.php
- Raw: https://pluginprobe.com/plugins/storeengine/2.2.0/raw/includes/sql-transaction.php
- Modified: 2026-01-25T13:29:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/storeengine/2.2.0/code/includes/sql-transaction.php#L10-L20`.

```php
<?php
/**
 * A SQL Transaction Handler to assist with starting, commiting and rolling back transactions.
 * This class also closes off an active transaction before shutdown to allow for shutdown processes to write to the database.
 */

namespace StoreEngine;

use StoreEngine\Classes\Exceptions\StoreEngineInvalidArgumentException;
use StoreEngine\Utils\Constants;
use StoreEngine\Utils\Helper;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class SqlTransaction {

	/**
	 * The query to run when a fatal shutdown occurs.
	 *
	 * @var string
	 */
	public string $on_fatal = '';

	/**
	 * The query to run if the PHP request ends without error.
	 *
	 * @var string
	 */
	public string $on_shutdown = '';

	/**
	 * Whether there's an active MYSQL transaction.
	 *
	 * @var bool
	 */
	public bool $active_transaction = false;

	/**
	 * Constructor.
	 *
	 * @param string<"commit"|"rollback"> $on_fatal Optional. The type of query to run on fatal shutdown if this transaction is still active. Can be 'rollback' or 'commit'. Default is 'rollback'.
	 * @param string<"commit"|"rollback"> $on_shutdown Optional. The type of query to run if a non-error shutdown occurs but there's still an active transaction. Can be 'rollback' or 'commit'. Default is 'commit'.
	 */
	public function __construct( string $on_fatal = 'rollback', string $on_shutdown = 'commit' ) {

		// Validate the $on_fatal and $on_shutdown parameters.
		if ( 'commit' !== $on_fatal && 'rollback' !== $on_fatal ) {
			_doing_it_wrong( __METHOD__, esc_html__( 'This method was called with an invalid parameter. The first argument ($on_fatal) should be "rollback" or "commit"', 'storeengine' ), '1.0.0' );
		}

		if ( 'commit' !== $on_shutdown && 'rollback' !== $on_shutdown ) {
			_doing_it_wrong( __METHOD__, esc_html__( 'This method was called with an invalid parameter. The second argument ($on_shutdown) should be "rollback" or "commit"', 'storeengine' ), '1.0.0' );
		}

		$this->on_fatal    = $on_fatal;
		$this->on_shutdown = $on_shutdown;

		// Ensure we close off this transaction on shutdown to allow other shutdown processes to save changes to the DB.
		add_action( 'shutdown', [ $this, 'handle_shutdown' ], - 100 );
	}

	/**
	 * Starts a MYSQL Transaction.
	 */
	public function start() {
		self::transaction_query( 'start' );
		$this->active_transaction = true;
	}

	/**
	 * Commits the MYSQL Transaction.
	 */
	public function commit() {
		self::transaction_query( 'commit' );
		$this->active_transaction = false;
	}

	/**
	 * Rolls back any changes made during the MYSQL Transaction.
	 */
	public function rollback() {
		self::transaction_query( 'rollback' );
		$this->active_transaction = false;
	}

	/**
	 * Closes out an active transaction depending on the type of shutdown.
	 *
	 * Shutdowns caused by a fatal will be rolledback or commited @see $this->on_fatal.
	 * Shutdowns caused by a natural PHP termination (no error) will be rolledback or commited. @see $this->on_shutdown.
	 */
	public function handle_shutdown() {
		if ( ! $this->active_transaction ) {
			return;
		}

		$error = error_get_last();
		$types = [
			E_ERROR,
			E_PARSE,
			E_COMPILE_ERROR,
			E_USER_ERROR,
			E_RECOVERABLE_ERROR,
		];

		if ( $error && in_array( $error['type'], $types, true ) ) {
			$this->{$this->on_fatal}();
		} else {
			$this->{$this->on_shutdown}();
		}
	}

	/**
	 * Run a MySQL transaction query, if supported.
	 *
	 * @param string<"start"|"commit"|"rollback"> $type Types: start (default), commit, rollback.
	 * @param bool $force use of transactions.
	 *
	 * @throws StoreEngineInvalidArgumentException
	 */
	public static function transaction_query( string $type = 'start', bool $force = false ) {
		global $wpdb;

		$allowed = [ 'start', 'commit', 'rollback' ];

		if ( ! in_array( $type, $allowed, true ) ) {
			throw StoreEngineInvalidArgumentException::create( 1, 'type', $allowed, $type ); // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped
		}

		$wpdb->hide_errors();

		Helper::maybe_define_constant( 'STOREENGINE_USE_TRANSACTIONS', true );

		if ( Constants::is_true( 'STOREENGINE_USE_TRANSACTIONS' ) || $force ) {
			// phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
			switch ( $type ) {
				case 'commit':
					$wpdb->query( 'COMMIT' );
					break;
				case 'rollback':
					$wpdb->query( 'ROLLBACK' );
					break;
				case 'start':
				default:
					$wpdb->query( 'START TRANSACTION' );
					break;
			}
			// phpcs:enable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
		}
	}
}

```
