esc_html__( 'WordClever – AI Content Writer', 'architect-construction' ), 'slug' => 'wordclever-ai-content-writer', 'required' => 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' => 'architect-construction', // 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 ); } // WordClever – AI Content Writer plugin activation add_action('wp_ajax_install_and_activate_wordclever_plugin', 'install_and_activate_wordclever_plugin'); function install_and_activate_wordclever_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.']); } // Define plugin slugs and file paths $architect_construction_woocommerce_slug = 'woocommerce'; $architect_construction_woocommerce_file = 'woocommerce/woocommerce.php'; $architect_construction_woocommerce_url = 'https://downloads.wordpress.org/plugin/woocommerce.latest-stable.zip'; $architect_construction_wordclever_slug = 'wordclever-ai-content-writer'; $architect_construction_wordclever_file = 'wordclever-ai-content-writer/wordclever.php'; $architect_construction_wordclever_url = 'https://downloads.wordpress.org/plugin/wordclever-ai-content-writer.latest-stable.zip'; // 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'; $architect_construction_upgrader = new Plugin_Upgrader(new Automatic_Upgrader_Skin()); // Step 1: Install and activate WooCommerce if not active if (!is_plugin_active($architect_construction_woocommerce_file)) { $architect_construction_installed_plugins = get_plugins(); if (!isset($architect_construction_installed_plugins[$architect_construction_woocommerce_file])) { // Install WooCommerce $architect_construction_install_wc = $architect_construction_upgrader->install($architect_construction_woocommerce_url); if (is_wp_error($architect_construction_install_wc)) { wp_send_json_error(['message' => 'WooCommerce installation failed.']); } } // Activate WooCommerce $architect_construction_activate_wc = activate_plugin($architect_construction_woocommerce_file); if (is_wp_error($architect_construction_activate_wc)) { wp_send_json_error(['message' => 'WooCommerce activation failed.', 'error' => $architect_construction_activate_wc->get_error_message()]); } } // Step 2: Install and activate WordClever plugin if (!is_plugin_active($architect_construction_wordclever_file)) { $architect_construction_installed_plugins = get_plugins(); if (!isset($architect_construction_installed_plugins[$architect_construction_wordclever_file])) { // Install WordClever plugin $architect_construction_install_wc_plugin = $architect_construction_upgrader->install($architect_construction_wordclever_url); if (is_wp_error($architect_construction_install_wc_plugin)) { wp_send_json_error(['message' => 'WordClever plugin installation failed.']); } } // Activate WordClever plugin $architect_construction_activate_wc_plugin = activate_plugin($architect_construction_wordclever_file); if (is_wp_error($architect_construction_activate_wc_plugin)) { wp_send_json_error(['message' => 'WordClever plugin activation failed.', 'error' => $architect_construction_activate_wc_plugin->get_error_message()]); } } // Success response wp_send_json_success(['message' => 'WooCommerce and WordClever plugins are activated successfully.']); }