# texty/2.0.1/includes/Integrations/WooCommerce.php

Texty – SMS Notification for WordPress, WooCommerce, Dokan and more, version 2.0.1. 116 lines.

- Page: https://pluginprobe.com/plugins/texty/2.0.1/code/includes/Integrations/WooCommerce.php
- Raw: https://pluginprobe.com/plugins/texty/2.0.1/raw/includes/Integrations/WooCommerce.php
- Modified: 2026-06-16T12:07:42+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/texty/2.0.1/code/includes/Integrations/WooCommerce.php#L10-L20`.

```php
<?php

namespace Texty\Integrations;

/**
 * WooCommerce Integration Class
 */
class WooCommerce {

    /**
     * Initialize
     */
    public function __construct() {
        add_action( 'woocommerce_order_status_changed', [ $this, 'order_status_changed' ], 10, 4 );
        add_action( 'texty_register_notifications', [ $this, 'register_notifications' ] );
    }

    /**
     * Register WooCommerce notification types.
     *
     * @param \Texty\Notifications $notifications The notifications manager
     *
     * @return void
     */
    public function register_notifications( $notifications ) {
        if ( ! class_exists( 'WooCommerce' ) ) {
            return;
        }

        $namespace = 'Texty\Notifications\WC\\';

        // WC Admin
        $notifications->register( 'order_admin_processing', $namespace . 'ProcessingAdmin' );
        $notifications->register( 'order_admin_complete', $namespace . 'CompleteAdmin' );
        $notifications->register( 'order_admin_cancelled', $namespace . 'CancelledAdmin' );
        $notifications->register( 'order_admin_failed', $namespace . 'FailedAdmin' );
        $notifications->register( 'order_admin_refunded', $namespace . 'RefundedAdmin' );

        // WC Customers
        $notifications->register( 'order_customer_hold', $namespace . 'HoldCustomer' );
        $notifications->register( 'order_customer_processing', $namespace . 'ProcessingCustomer' );
        $notifications->register( 'order_customer_complete', $namespace . 'CompleteCustomer' );
        $notifications->register( 'order_customer_cancelled', $namespace . 'CancelledCustomer' );
        $notifications->register( 'order_customer_failed', $namespace . 'FailedCustomer' );
        $notifications->register( 'order_customer_refunded', $namespace . 'RefundedCustomer' );
    }

    /**
     * Send a message when an order status changes
     *
     * @param int      $order_id
     * @param string   $old_status
     * @param string   $order_status
     * @param WC_Order $order
     *
     * @return void
     */
    public function order_status_changed( $order_id, $old_status, $order_status, $order ) {
        // don't process sub-orders
        if ( $order->get_parent_id() ) {
            return;
        }

        switch ( $order_status ) {
            case 'on-hold':
                $this->send( 'order_customer_hold', $order );
                break;

            case 'processing':
                $this->send( 'order_admin_processing', $order );
                $this->send( 'order_customer_processing', $order );
                break;

            case 'completed':
                $this->send( 'order_admin_complete', $order );
                $this->send( 'order_customer_complete', $order );
                break;

            case 'cancelled':
                $this->send( 'order_admin_cancelled', $order );
                $this->send( 'order_customer_cancelled', $order );
                break;

            case 'failed':
                $this->send( 'order_admin_failed', $order );
                $this->send( 'order_customer_failed', $order );
                break;

            case 'refunded':
                $this->send( 'order_admin_refunded', $order );
                $this->send( 'order_customer_refunded', $order );
                break;

            default:
                // code...
                break;
        }
    }

    /**
     * Send notification by event
     *
     * @param string   $event
     * @param WC_Order $order
     *
     * @return void
     */
    private function send( $event, $order ) {
        $class        = texty()->notifications()->get( $event );
        $notification = new $class();

        $notification->set_order( $order );
        $notification->send();
    }
}

```
