esc_html__( 'WooCommerce', 'cafe-eatery' ), 'slug' => 'woocommerce', 'required' => false, ), array( 'name' => __( 'Creta Testimonial Showcase', 'cafe-eatery' ), 'slug' => 'creta-testimonial-showcase', 'source' => '', 'required' => false, 'force_activation' => false, ), ); /* * Array of configuration settings. Amend each line as needed. * * TGMPA will start providing localized text strings soon. If you already have translations of our standard * strings available, please help us make TGMPA even better by giving us access to these translations or by * sending in a pull-request with .po file(s) with the translations. * * Only uncomment the strings in the config array if you want to customize the strings. */ $config = array( 'id' => 'cafe-eatery', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to bundled plugins. 'menu' => 'tgmpa-install-plugins', // Menu slug. 'has_notices' => true, // Show admin notices or not. 'dismissable' => true, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => false, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. ); tgmpa( $plugins, $config ); } //Creta Testimonial Showcase plugin activation add_action('wp_ajax_install_and_activate_creta_testimonial_plugin', 'install_and_activate_creta_testimonial_plugin'); function install_and_activate_creta_testimonial_plugin() { // Verify nonce for security if (!isset($_POST['nonce']) || !wp_verify_nonce($_POST['nonce'], 'install_activate_nonce')) { wp_send_json_error(['message' => 'Nonce verification failed.']); } // Include necessary WordPress files include_once ABSPATH . 'wp-admin/includes/plugin.php'; include_once ABSPATH . 'wp-admin/includes/file.php'; include_once ABSPATH . 'wp-admin/includes/misc.php'; include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; include_once ABSPATH . 'wp-admin/includes/plugin-install.php'; $cafe_eatery_upgrader = new Plugin_Upgrader(new Automatic_Upgrader_Skin()); // Define required plugins $plugins = [ [ 'slug' => 'creta-testimonial-showcase', 'file' => 'creta-testimonial-showcase/creta-testimonial-showcase.php', 'url' => 'https://downloads.wordpress.org/plugin/creta-testimonial-showcase.latest-stable.zip', ] ]; $cafe_eatery_installed_plugins = get_plugins(); foreach ($plugins as $plugin) { // Install if not present if (!isset($cafe_eatery_installed_plugins[$plugin['file']])) { $cafe_eatery_install_result = $cafe_eatery_upgrader->install($plugin['url']); if (is_wp_error($cafe_eatery_install_result)) { wp_send_json_error(['message' => "Failed to install {$plugin['slug']}"]); } } // Activate if not active if (!is_plugin_active($plugin['file'])) { $cafe_eatery_activate_result = activate_plugin($plugin['file']); if (is_wp_error($cafe_eatery_activate_result)) { wp_send_json_error([ 'message' => "Failed to activate {$plugin['slug']}", 'error' => $cafe_eatery_activate_result->get_error_message(), ]); } } } // Success response wp_send_json_success(['message' => 'Creta Testimonial Showcase plugins are activated successfully.']); }