# sequra/trunk/src/Controllers/Hooks/Order/interface-order-controller.php

seQura, version trunk. 77 lines.

- Page: https://pluginprobe.com/plugins/sequra/trunk/code/src/Controllers/Hooks/Order/interface-order-controller.php
- Raw: https://pluginprobe.com/plugins/sequra/trunk/raw/src/Controllers/Hooks/Order/interface-order-controller.php
- Modified: 2026-03-24T14:25:40+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/trunk/code/src/Controllers/Hooks/Order/interface-order-controller.php#L10-L20`.

```php
<?php
/**
 * Order interface
 *
 * @package    SeQura/WC
 * @subpackage SeQura/WC/Controllers
 */

namespace SeQura\WC\Controllers\Hooks\Order;

use WC_Order;
use WC_Order_Data_Store_CPT;

/**
 * Handle hooks related to order management
 */
interface Interface_Order_Controller {

	/**
	 * Add support to custom meta query vars for the order query
	 *
	 * @param array $wp_query_args Args for WP_Query.
	 * @param array $query_vars Query vars from WC_Order_Query.
	 * @param WC_Order_Data_Store_CPT $order_data_store WC_Order_Data_Store instance.
	 * @return array modified $query
	 */
	public function handle_custom_query_vars( $wp_query_args, $query_vars, $order_data_store );

	/**
	 * Trigger the sync of the order status with SeQura
	 * 
	 * @param int $order_id Order ID.
	 * @param string $old_status Old status.
	 * @param string $new_status New status.
	 * @param WC_Order $order Order object.
	 * 
	 * @return void
	 */
	public function handle_order_status_changed( $order_id, $old_status, $new_status, $order );

	/**
	 * Display notices related to an order
	 * 
	 * @return void
	 */
	public function display_notices();

	/**
	 * Show a link to the seQura back office in the order details page
	 * 
	 * @param WC_Order $order Order object.
	 * @return void
	 */
	public function show_link_to_sequra_back_office( $order );

	/**
	 * Cleanup orders
	 * 
	 * @return void
	 */
	public function cleanup_orders();

	/**
	 * Respond to the sequra_order_migration_add_indexes hook
	 * 
	 * @param string $hook Hook name that triggered the action.
	 */
	public function migrate_orders_to_use_indexes( $hook );

	/**
	 * Create the Cart Info object for the current session if it doesn't exist.
	 * 
	 * @return void
	 */
	public function ensure_cart_info_exists();
}

```
