# texty/2.0.0/includes/Notifications.php

Texty – SMS Notification for WordPress, WooCommerce, Dokan and more, version 2.0.0. 158 lines.

- Page: https://pluginprobe.com/plugins/texty/2.0.0/code/includes/Notifications.php
- Raw: https://pluginprobe.com/plugins/texty/2.0.0/raw/includes/Notifications.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.0/code/includes/Notifications.php#L10-L20`.

```php
<?php

namespace Texty;

/**
 * Notification Class
 */
class Notifications {

    /**
     * Option key to hold the notifications
     */
    const OPTION_KEY = 'texty_notifications';

    /**
     * Notifications
     *
     * @var array
     */
    private $notifications = [];

    /**
     * Whether built-in notifications have been registered
     *
     * @var bool
     */
    private $registered = false;

    /**
     * The notification currently driving a send-pipeline call.
     *
     * `Notification::send()` sets this around its `$gateway->send()` loop so
     * that `Dispatcher::log_sms` (hooked on `texty_after_send_sms`) can write
     * the originating notification's id + group into the SmsStat row without
     * having to pass them through the gateway pipeline.
     *
     * @var \Texty\Notifications\Notification|null
     */
    private $active = null;

    /**
     * Set the active notification for the duration of a send.
     *
     * @param \Texty\Notifications\Notification|null $notification
     *
     * @return void
     */
    public function set_active( $notification ) {
        $this->active = $notification;
    }

    /**
     * Get the active notification, if any.
     *
     * @return \Texty\Notifications\Notification|null
     */
    public function get_active() {
        return $this->active;
    }

    /**
     * Clear the active notification.
     *
     * @return void
     */
    public function clear_active() {
        $this->active = null;
    }

    /**
     * Register a notification
     *
     * @param string $key       Notification identifier
     * @param string $classname Fully qualified class name
     *
     * @return void
     */
    public function register( $key, $classname ) {
        $this->notifications[ $key ] = $classname;
    }

    /**
     * Get a notification class
     *
     * @param string $key
     *
     * @return false|string
     */
    public function get( $key ) {
        $notifications = $this->all();

        if ( array_key_exists( $key, $notifications ) ) {
            return $notifications[ $key ];
        }

        return false;
    }

    /**
     * Get available notification classes
     *
     * @return array
     */
    public function all() {
        if ( ! $this->registered ) {
            $this->notifications = [
                'registration' => __NAMESPACE__ . '\Notifications\WP\Registration',
                'comment'      => __NAMESPACE__ . '\Notifications\WP\Comment',
            ];

            /**
             * Fires to allow registration of custom notifications.
             *
             * @param Notifications $manager The notifications manager instance
             */
            do_action( 'texty_register_notifications', $this );

            $this->registered = true;
        }

        return apply_filters( 'texty_available_notifications', $this->notifications );
    }

    /**
     * Get the name of the groups
     *
     * @return void
     */
    public function get_groups() {
        return apply_filters( 'texty_notification_groups', [ // phpcs:ignore
            'wp' => [
                'title'       => __( 'WordPress', 'texty' ),
                'description' => __( 'Default WordPress system alerts', 'texty' ),
                'available'   => true,
            ],
            'wc' => [
                'title'       => __( 'WooCommerce', 'texty' ),
                'description' => __( 'WooCommerce order and customer alerts', 'texty' ),
                'available'   => class_exists( 'WooCommerce' ) ? true : false,
            ],
            'dokan' => [
                'title'       => __( 'Dokan', 'texty' ),
                'description' => __( 'Vendor and marketplace alerts', 'texty' ),
                'available'   => class_exists( 'WeDevs_Dokan' ) ? true : false,
            ],
        ] ); // phpcs:ignore
    }

    /**
     * Retreive all the settings
     *
     * @return array
     */
    public function settings() {
        return get_option( self::OPTION_KEY, [] );
    }
}

```
