# notificationx/3.2.9/includes/Extensions/ExitIntent/importer.php

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

- Page: https://pluginprobe.com/plugins/notificationx/3.2.9/code/includes/Extensions/ExitIntent/importer.php
- Raw: https://pluginprobe.com/plugins/notificationx/3.2.9/raw/includes/Extensions/ExitIntent/importer.php
- Modified: 2026-06-09T11:46:12+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.9/code/includes/Extensions/ExitIntent/importer.php#L10-L20`.

```php
<?php
namespace NotificationX\Extensions\ExitIntent;

use Elementor\TemplateLibrary\Source_Local;
use Elementor\Core\Settings\Page\Model;
use Elementor\Plugin as ElementorPlugin;

/**
 * Elementor importer for Exit Intent Popup seed templates.
 *
 * Mirrors NotificationX\Extensions\PressBar\Importer but writes to the
 * `nx_exit_intent` post type and reads from this extension's own jsons/
 * folder. See docs/tasks/exit-intent-popup-elementor/02-importer.md.
 */
class Importer extends Source_Local {

    public function get_template_content( $args ) {
        $path = __DIR__ . '/jsons/' . $args['theme'] . '.json';
        if ( ! file_exists( $path ) ) {
            return new \WP_Error( 'nx_exit_intent_template_missing', sprintf( 'Seed template not found: %s', $args['theme'] ) );
        }
        return json_decode( file_get_contents( $path ), true );
    }

    /**
     * Get template data ready for Elementor import.
     *
     * @inheritDoc
     * @param array  $args
     * @param string $context
     * @return array|\WP_Error
     */
    public function get_data( array $args, $context = 'display' ) {
        $data = $this->get_template_content( $args );
        if ( is_wp_error( $data ) ) {
            return $data;
        }
        ElementorPlugin::$instance->editor->set_edit_mode( true );

        $data['content'] = $this->replace_elements_ids( $data['content'] );
        $data['content'] = $this->process_export_import_content( $data['content'], 'on_import' );

        $post_id = isset( $args['editor_post_id'] ) ? $args['editor_post_id'] : false;
        if ( $post_id ) {
            $document = ElementorPlugin::$instance->documents->get( $post_id );
            if ( $document ) {
                $data['content'] = $document->get_elements_raw_data( $data['content'], true );
            }
        }
        return $data;
    }

    /**
     * Create a new `nx_exit_intent` Elementor document from a seed theme.
     *
     * @param array $args { theme: string, post_title?: string }
     * @return int|\WP_Error New post ID on success.
     */
    public function create_nx( $args ) {
        $template_data = $this->get_data( $args );
        if ( is_wp_error( $template_data ) ) {
            return $template_data;
        }

        $page_settings = [];
        if ( ! empty( $template_data['page_settings'] ) ) {
            $page = new Model( [
                'id'       => 0,
                'settings' => $template_data['page_settings'],
            ] );
            $page_settings_data = $this->process_element_export_import_content( $page, 'on_import' );
            if ( ! empty( $page_settings_data['settings'] ) ) {
                $page_settings = $page_settings_data['settings'];
            }
        }

        $defaults = [
            'post_title'    => isset( $template_data['page_title'] )
                ? $template_data['page_title']
                : 'NxExit: ' . $template_data['title'],
            'page_settings' => $page_settings,
            'status'        => current_user_can( 'publish_posts' ) ? 'publish' : 'pending',
        ];

        $template_data = wp_parse_args( $template_data, $defaults );

        $document = ElementorPlugin::$instance->documents->create(
            $template_data['type'],
            [
                'post_title'  => $template_data['post_title'],
                'post_status' => $template_data['status'],
                'post_type'   => 'nx_exit_intent',
            ]
        );

        if ( is_wp_error( $document ) ) {
            return $document;
        }

        $document->save( [
            'elements' => $template_data['content'],
            'settings' => $page_settings,
        ] );

        return $document->get_main_id();
    }
}

```
