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, [] ); } }