/home/awneajlw/www/wp-content/plugins/cf7-widget-elementor/custom-editor/init 2.php
<?php

function void_cf7_elementor_js_load(){
    wp_enqueue_script( 'void-cf7-elementor-js', plugins_url('assets/js/void-cf7-elementor-editor.js', __FILE__ ), array('jquery'), CF7_WIDGET_E_VERSION, true );
    wp_localize_script('void-cf7-elementor-js', 'voidCf7Admin',
        [
            'ajaxUrl' => admin_url( 'admin-ajax.php' ),
            'url' => get_admin_url(),
            'wpRestNonce' => wp_create_nonce('wp_rest'),
        ]
    );
}

add_action( 'elementor/editor/after_enqueue_scripts', 'void_cf7_elementor_js_load');

// function void_cf7_elementor_css_load(){
//     wp_register_style( 'void-cf7-elementor-css', plugins_url('assets/css/void-cf7-elementor-editor.css', __FILE__ ), [], CF7_WIDGET_E_VERSION );
// }

// add_action( 'elementor/frontend/before_enqueue_styles', 'void_cf7_elementor_css_load');

function load_custom_editor_modal(){
    wp_enqueue_style( 'void-cf7-elementor-css', plugins_url('assets/css/void-cf7-elementor-editor.css', __FILE__ ), [], CF7_WIDGET_E_VERSION );
    ?>
    <div class="void-cf7-custom-editor-modal">
        <?php include 'modal-editor.php'; ?>
    </div>
    <?php
}

add_action('elementor/editor/after_enqueue_styles', 'load_custom_editor_modal' );