/home/sylamedg/public_html/wp-content/themes/shopire/inc/admin/getting-started.php
<?php
/**
* Get started notice
*/

add_action( 'wp_ajax_shopire_dismissed_notice_handler', 'shopire_ajax_notice_handler' );

/**
 * AJAX handler to store the state of dismissible notices.
 */
function shopire_ajax_notice_handler() {
    if ( isset( $_POST['type'] ) ) {
        // Pick up the notice "type" - passed via jQuery (the "data-notice" attribute on the notice)
        $type = sanitize_text_field( wp_unslash( $_POST['type'] ) );
        // Store it in the options table
        update_option( 'dismissed-' . $type, TRUE );
    }
}

function shopire_deprecated_hook_admin_notice() {
        // Check if it's been dismissed...
        if ( ! get_option('dismissed-get_started', FALSE ) ) {
            // Added the class "notice-get-started-class" so jQuery pick it up and pass via AJAX,
            // and added "data-notice" attribute in order to track multiple / different notices
            // multiple dismissible notice states ?>
            <div class="updated notice notice-get-started-class is-dismissible" data-notice="get_started">
                <div class="shopire-getting-started-notice clearfix">
                    <div class="shopire-theme-screenshot">
                        <img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/screenshot.png" class="screenshot" alt="<?php esc_attr_e( 'Theme Screenshot', 'shopire' ); ?>" />
                    </div><!-- /.shopire-theme-screenshot -->
                    <div class="shopire-theme-notice-content">
                        <h2 class="shopire-notice-h2">
                            <?php
                        printf(
                        /* translators: 1: welcome page link starting html tag, 2: welcome page link ending html tag. */
                            esc_html__( 'Welcome! Thank you for choosing %1$s!', 'shopire' ), '<strong>'. wp_get_theme()->get('Name'). '</strong>' );
                        ?>
                        </h2>

                        <p class="plugin-install-notice"><?php echo sprintf(__('To take full advantage of all the features of this theme, please install and activate the <strong>Fable Extra</strong> plugin, then enjoy this theme.', 'shopire')) ?></p>

                        <a class="shopire-btn-get-started button button-primary button-hero shopire-button-padding" href="#" data-name="" data-slug="">
						<?php
                        printf(
                        /* translators: 1: welcome page link starting html tag, 2: welcome page link ending html tag. */
                            esc_html__( 'Get started with %1$s', 'shopire' ), '<strong>'. wp_get_theme()->get('Name'). '</strong>' );
                        ?>
						
						</a><span class="shopire-push-down">
                        <?php
                            /* translators: %1$s: Anchor link start %2$s: Anchor link end */
                            printf(
                                'or %1$sCustomize theme%2$s</a></span>',
                                '<a target="_blank" href="' . esc_url( admin_url( 'customize.php' ) ) . '">',
                                '</a>'
                            );
                        ?>
                    </div><!-- /.shopire-theme-notice-content -->
                </div>
            </div>
        <?php }
}

add_action( 'admin_notices', 'shopire_deprecated_hook_admin_notice' );

/**
* Plugin installer
*/

add_action( 'wp_ajax_install_act_plugin', 'shopire_admin_install_plugin' );

function shopire_admin_install_plugin() {

    // Capability check (required)
    if ( ! current_user_can( 'install_plugins' ) ) {
        wp_send_json_error(
            array( 'message' => __( 'Unauthorized', 'shopire' ) ),
            403
        );
    }

    // Nonce verification (must match wp_create_nonce)
    check_ajax_referer( 'shopire_nonce', 'nonce' );

    include_once ABSPATH . 'wp-admin/includes/file.php';
    include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
    include_once ABSPATH . 'wp-admin/includes/plugin-install.php';

    if ( ! file_exists( WP_PLUGIN_DIR . '/fable-extra' ) ) {

        $api = plugins_api(
            'plugin_information',
            array(
                'slug'   => 'fable-extra',
                'fields' => array( 'sections' => false ),
            )
        );

        if ( is_wp_error( $api ) ) {
            wp_send_json_error( $api->get_error_message() );
        }

        $skin     = new WP_Ajax_Upgrader_Skin();
        $upgrader = new Plugin_Upgrader( $skin );
        $result   = $upgrader->install( $api->download_link );

        if ( is_wp_error( $result ) ) {
            wp_send_json_error( $result->get_error_message() );
        }
    }

    $activate = activate_plugin( 'fable-extra/fable-extra.php' );

    if ( is_wp_error( $activate ) ) {
        wp_send_json_error( $activate->get_error_message() );
    }

    wp_send_json_success(
        array( 'message' => __( 'Plugin installed and activated successfully.', 'shopire' ) )
    );
}