esc_html__( 'You are not allowed to install plugins', 'google-analytics-dashboard-for-wp' ), ) ); } // Install the addon. if ( isset( $_POST['plugin'] ) ) { $download_url = $_POST['plugin']; global $hook_suffix; // Set the current screen to avoid undefined notices. set_current_screen(); // Prepare variables. $method = ''; $url = add_query_arg( array( 'page' => 'exactmetrics-settings' ), admin_url( 'admin.php' ) ); $url = esc_url( $url ); // Start output bufferring to catch the filesystem form if credentials are needed. ob_start(); if ( false === ( $creds = request_filesystem_credentials( $url, $method, false, false, null ) ) ) { $form = ob_get_clean(); echo json_encode( array( 'form' => $form ) ); wp_die(); } // If we are not authenticated, make it happen now. if ( ! WP_Filesystem( $creds ) ) { ob_start(); request_filesystem_credentials( $url, $method, true, false, null ); $form = ob_get_clean(); echo json_encode( array( 'form' => $form ) ); wp_die(); } // We do not need any extra credentials if we have gotten this far, so let's install the plugin. exactmetrics_require_upgrader( false ); // Create the plugin upgrader with our custom skin. $installer = new Plugin_Upgrader( $skin = new ExactMetrics_Skin() ); $installer->install( $download_url ); // Flush the cache and return the newly installed plugin basename. wp_cache_flush(); if ( $installer->plugin_info() ) { $plugin_basename = $installer->plugin_info(); echo json_encode( array( 'plugin' => $plugin_basename ) ); wp_die(); } } // Send back a response. echo json_encode( true ); wp_die(); } add_action( 'wp_ajax_exactmetrics_activate_addon', 'exactmetrics_ajax_activate_addon' ); /** * Activates a ExactMetrics addon. * * @access public * @since 6.0.0 */ function exactmetrics_ajax_activate_addon() { // Run a security check first. check_ajax_referer( 'exactmetrics-activate', 'nonce' ); if ( ! current_user_can( 'activate_plugins' ) ) { wp_send_json( array( 'error' => esc_html__( 'You are not allowed to activate plugins', 'google-analytics-dashboard-for-wp' ), ) ); } // Activate the addon. if ( isset( $_POST['plugin'] ) ) { if ( isset( $_POST['isnetwork'] ) && $_POST['isnetwork'] ) { $activate = activate_plugin( $_POST['plugin'], NULL, true ); } else { $activate = activate_plugin( $_POST['plugin'] ); } if ( is_wp_error( $activate ) ) { echo json_encode( array( 'error' => $activate->get_error_message() ) ); wp_die(); } } echo json_encode( true ); wp_die(); } add_action( 'wp_ajax_exactmetrics_deactivate_addon', 'exactmetrics_ajax_deactivate_addon' ); /** * Deactivates a ExactMetrics addon. * * @access public * @since 6.0.0 */ function exactmetrics_ajax_deactivate_addon() { // Run a security check first. check_ajax_referer( 'exactmetrics-deactivate', 'nonce' ); if ( ! current_user_can( 'deactivate_plugins' ) ) { wp_send_json( array( 'error' => esc_html__( 'You are not allowed to deactivate plugins', 'google-analytics-dashboard-for-wp' ), ) ); } // Deactivate the addon. if ( isset( $_POST['plugin'] ) ) { if ( isset( $_POST['isnetwork'] ) && $_POST['isnetwork'] ) { $deactivate = deactivate_plugins( $_POST['plugin'], false, true ); } else { $deactivate = deactivate_plugins( $_POST['plugin'] ); } } echo json_encode( true ); wp_die(); } /** * Called whenever a notice is dismissed in ExactMetrics or its Addons. * * Updates a key's value in the options table to mark the notice as dismissed, * preventing it from displaying again * * @access public * @since 6.0.0 */ function exactmetrics_ajax_dismiss_notice() { // Run a security check first. check_ajax_referer( 'exactmetrics-dismiss-notice', 'nonce' ); // Deactivate the notice if ( isset( $_POST['notice'] ) ) { // Init the notice class and mark notice as deactivated ExactMetrics()->notices->dismiss( $_POST['notice'] ); // Return true echo json_encode( true ); wp_die(); } // If here, an error occurred echo json_encode( false ); wp_die(); } add_action( 'wp_ajax_exactmetrics_ajax_dismiss_notice', 'exactmetrics_ajax_dismiss_notice' ); /** * Dismiss SEMRush CTA * * @access public * @since 7.12.3 */ function exactmetrics_ajax_dismiss_semrush_cta() { check_ajax_referer( 'mi-admin-nonce', 'nonce' ); if ( ! current_user_can( 'exactmetrics_save_settings' ) ) { return; } // Deactivate the notice if ( update_option( 'exactmetrics_dismiss_semrush_cta', 'yes' ) ) { // Return true wp_send_json( array( 'dismissed' => 'yes', ) ); wp_die(); } // If here, an error occurred wp_send_json( array( 'dismissed' => 'no', ) ); wp_die(); } add_action( 'wp_ajax_exactmetrics_vue_dismiss_semrush_cta', 'exactmetrics_ajax_dismiss_semrush_cta' ); /** * Get the sem rush cta dismiss status value */ function exactmetrics_get_sem_rush_cta_status() { check_ajax_referer( 'mi-admin-nonce', 'nonce' ); $dismissed_cta = get_option( 'exactmetrics_dismiss_semrush_cta', 'no' ); wp_send_json( array( 'dismissed' => $dismissed_cta, ) ); } add_action( 'wp_ajax_exactmetrics_get_sem_rush_cta_status', 'exactmetrics_get_sem_rush_cta_status' );