# notificationx/3.2.13/includes/Extensions/CustomNotification/CustomNotification.php

NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner &amp; Floating Notification Bar, version 3.2.13. 102 lines.

- Page: https://pluginprobe.com/plugins/notificationx/3.2.13/code/includes/Extensions/CustomNotification/CustomNotification.php
- Raw: https://pluginprobe.com/plugins/notificationx/3.2.13/raw/includes/Extensions/CustomNotification/CustomNotification.php
- Modified: 2026-07-20T12:33: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/notificationx/3.2.13/code/includes/Extensions/CustomNotification/CustomNotification.php#L10-L20`.

```php
<?php
/**
 * CustomNotification Extension
 *
 * @package NotificationX\Extensions
 */

namespace NotificationX\Extensions\CustomNotification;

use NotificationX\GetInstance;
use NotificationX\Extensions\Extension;
use NotificationX\Extensions\ExtensionFactory;
use NotificationX\Types\Conversions;

/**
 * CustomNotification Extension
 * @method static CustomNotification get_instance($args = null)
 */
class CustomNotification extends Extension {
    /**
     * Instance of CustomNotification
     *
     * @var CustomNotification
     */
    use GetInstance;

    public $priority        = 5;
    public $id              = 'custom_notification';
    public $img             = NOTIFICATIONX_ADMIN_URL . 'images/extensions/sources/custom.png';
    public $doc_link        = 'https://notificationx.com/docs/custom-notification';
    public $types           = 'custom';
    public $module          = 'modules_custom_notification';
    public $module_priority = 13;
    public $is_pro          = true;
    public $link_type       = '-1';

    /**
     * Initially Invoked when initialized.
     */
    public function __construct(){
        parent::__construct();
    }

    public function init_extension()
    {
        $this->title = __('Custom Notification', 'notificationx');
        $this->module_title = __('Custom Notification', 'notificationx');
    }

    /**
     * Get data for CustomNotification Extension.
     *
     * @param array $args Settings arguments.
     * @return array
     */
    public function get_data( $args = array() ){
        return 'Hello From Custom Notification';
    }

    public function supported_themes() {
        $custom                = [];
        $custom['sales_count'] = $this->get_themes_for_type('conversions_count');
        $custom['conversions'] = $this->get_themes_for_type('conversions');
        $custom['maps_theme']  = $this->get_themes_for_type('maps_theme');
        $custom['comments']    = $this->get_themes_for_type('comments');
        $custom['reviews']     = $this->get_themes_for_type('reviews');
        $custom['stats']       = $this->get_themes_for_type('download_stats');
        $custom['subs']        = $this->get_themes_for_type('email_subscription');
        return $custom;
    }

    public function get_themes_for_type($type) {
        $conversions_count = Conversions::get_instance()->conversions_count;
        $maps_theme = array('conversions_maps_theme', 'conversions_conv-theme-six', 'comments_maps_theme', 'email_subscription_maps_theme');
        if ($type == 'conversions_count') return $conversions_count;
        if ($type == 'maps_theme') {
            return $maps_theme;
        }

        $themes = ExtensionFactory::get_instance()->get_themes_for_type($type);

        if ($type == 'conversions') {
            $themes = array_values(array_diff($themes, $conversions_count));
        }
        $themes = array_values(array_diff($themes, $maps_theme));

        return $themes;
    }

    public function doc(){
        /* translators: %1$s: documentation link URL, %2$s: video tutorial link URL, %3$s: Display Custom Notification Alerts link URL */
        return sprintf(__('<p>You can make custom notification for its all types of campaign. For further assistance, check out our step by step <a target="_blank" href="%1$s">documentation</a>.</p>
		<p>🎦 Watch <a target="_blank" href="%2$s">video tutorial</a> to learn quickly</p>
		<p><strong>Recommended Blog:</strong></p>
		<p>🔥 How to <a target="_blank" href="%3$s">Display Custom Notification Alerts</a> On Your Website Using NotificationX</p>', 'notificationx'),
        'https://notificationx.com/docs/custom-notification/',
        'https://www.youtube.com/watch?v=OuTmDZ0_TEw',
        'https://wpdeveloper.com/custom-notificationx-alert-fomo/'
        );
    }
}

```
