# notificationx/3.2.11/includes/Extensions/CCPA/CCPA_Notification.php

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

- Page: https://pluginprobe.com/plugins/notificationx/3.2.11/code/includes/Extensions/CCPA/CCPA_Notification.php
- Raw: https://pluginprobe.com/plugins/notificationx/3.2.11/raw/includes/Extensions/CCPA/CCPA_Notification.php
- Modified: 2025-10-08T12:24:26+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.11/code/includes/Extensions/CCPA/CCPA_Notification.php#L10-L20`.

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

namespace NotificationX\Extensions\CCPA;

use NotificationX\GetInstance;
use NotificationX\Extensions\Extension;

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

    public $priority        = 20;
    public $id              = 'ccpa_notification';
    public $doc_link        = 'https://notificationx.com/docs/how-to-configure-cookies-policy-for-website/';
    public $types           = 'gdpr';
    // public $img             = NOTIFICATIONX_ADMIN_URL . 'images/extensions/sources/vimeo.png';
    public $show_on_module  = false;
    public $show_on_type     = false;

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

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

```
