# sequra/4.3.3/src/Controllers/Hooks/Payment/class-payment-controller.php

seQura, version 4.3.3. 105 lines.

- Page: https://pluginprobe.com/plugins/sequra/4.3.3/code/src/Controllers/Hooks/Payment/class-payment-controller.php
- Raw: https://pluginprobe.com/plugins/sequra/4.3.3/raw/src/Controllers/Hooks/Payment/class-payment-controller.php
- Modified: 2025-10-21T08:30:24+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/sequra/4.3.3/code/src/Controllers/Hooks/Payment/class-payment-controller.php#L10-L20`.

```php
<?php
/**
 * Payment Controller
 *
 * @package    SeQura/WC
 * @subpackage SeQura/WC/Controllers
 */

namespace SeQura\WC\Controllers\Hooks\Payment;

use Automattic\WooCommerce\Blocks\Payments\PaymentMethodRegistry;
use SeQura\Core\Infrastructure\ServiceRegister;
use SeQura\WC\Controllers\Controller;
use SeQura\WC\Services\Log\Interface_Logger_Service;
use SeQura\WC\Services\Order\Interface_Order_Service;
use SeQura\WC\Services\Payment\Sequra_Payment_Gateway;
use SeQura\WC\Services\Payment\Sequra_Payment_Gateway_Block_Support;
use WC_Order;

/**
 * Respond to payment hooks
 */
class Payment_Controller extends Controller implements Interface_Payment_Controller {

	/**
	 * Order service
	 *
	 * @var Interface_Order_Service
	 */
	private $order_service;

	/**
	 * Constructor
	 */
	public function __construct( 
		Interface_Logger_Service $logger, 
		string $templates_path,
		Interface_Order_Service $order_service 
	) {
		parent::__construct( $logger, $templates_path );
		$this->order_service = $order_service;
	}

	/**
	 * Register the gateway classes so that they can be used by WooCommerce
	 *
	 * @param string[] $gateways
	 * @return string[]
	 */
	public function register_gateway_classes( $gateways ) {
		$this->logger->log_debug( 'Hook executed', __FUNCTION__, __CLASS__ );
		if ( ! in_array( Sequra_Payment_Gateway::class, $gateways, true ) ) {
			$gateways[] = Sequra_Payment_Gateway::class;
		}
		return $gateways;
	}

	/**
	 * Register the payment gateway block so that it can be used by Gutenberg
	 * 
	 * @return void
	 */
	public function register_gateway_gutenberg_block() {
		$this->logger->log_debug( 'Hook executed', __FUNCTION__, __CLASS__ );
		\add_action( 'woocommerce_blocks_payment_method_type_registration', array( $this, 'register_gateway_gutenberg_block_class' ) );
	}

	/**
	 * Register the payment gateway block class
	 * 
	 * @param PaymentMethodRegistry $payment_method_registry The payment method registry.
	 * @return void
	 */
	public function register_gateway_gutenberg_block_class( $payment_method_registry ) {
		$this->logger->log_debug( 'Hook executed', __FUNCTION__, __CLASS__ );
		$payment_method_registry->register( ServiceRegister::getService( Sequra_Payment_Gateway_Block_Support::class ) );
	}

	/**
	 * Append text after the thank you message on the order received page
	 * 
	 * @param string $text The text to append.
	 * @param mixed $order The order object.
	 * @return string
	 */
	public function order_received_text( $text, $order ) {
		$this->logger->log_debug( 'Hook executed', __FUNCTION__, __CLASS__ );
		$notices = \wc_print_notices( true );
		return $notices . $text;
	}

	/**
	 * Set the proper payment method description in the order
	 * 
	 * @param string $value The payment method title.
	 * @param mixed $order The order object.
	 * @return string
	 */
	public function order_get_payment_method_title( $value, $order ) {
		$this->logger->log_debug( 'Hook executed', __FUNCTION__, __CLASS__ );
		$sequra_payment_method = $order instanceof WC_Order ? $this->order_service->get_payment_method_title( $order ) : null;
		return empty( $sequra_payment_method ) ? $value : $sequra_payment_method;
	}
}

```
