bookstore_exhibition_get_recommended_actions(); $this->bookstore_exhibition_action_count = $bookstore_exhibition_actions['count']; $this->bookstore_exhibition_recommended_actions = $bookstore_exhibition_actions['actions']; add_action( 'wp_ajax_create_pattern_setup_builder', array( $this, 'create_pattern_setup_builder' ) ); } public function bookstore_exhibition_recommended_elemento_importer_plugins_array($bookstore_exhibition_plugins){ $bookstore_exhibition_plugins[] = array( 'name' => esc_html__('Mizan Demo Importor', 'bookstore-exhibition'), 'slug' => 'mizan-demo-importer', 'function' => 'Mizan_Importer_ThemeWhizzie', 'desc' => esc_html__('We highly recommend installing the Mizan Demo Importor plugin for importing the demo content with Elementor.', 'bookstore-exhibition'), ); return $bookstore_exhibition_plugins; } public function enqueue_scripts() { wp_enqueue_script('updates'); wp_register_script( 'bookstore-exhibition-plugin-activation-script', esc_url(get_template_directory_uri()) . '/inc/getstart/js/plugin-activation.js', array('jquery') ); wp_localize_script('bookstore-exhibition-plugin-activation-script', 'bookstore_exhibition_plugin_activate_plugin', array( 'installing' => esc_html__('Installing', 'bookstore-exhibition'), 'activating' => esc_html__('Activating', 'bookstore-exhibition'), 'error' => esc_html__('Error', 'bookstore-exhibition'), 'ajax_url' => esc_url(admin_url('admin-ajax.php')), 'wpelementoimpoter_admin_url' => esc_url(admin_url('admin.php?page=mizan-demo-importer-tgmpa-install-plugins')), 'addon_admin_url' => esc_url(admin_url('admin.php?page=mizandemoimporter-wizard')) ) ); wp_enqueue_script( 'bookstore-exhibition-plugin-activation-script' ); } // --------- Plugin Actions --------- public function bookstore_exhibition_get_recommended_actions() { $bookstore_exhibition_act_count = 0; $bookstore_exhibition_actions_todo = get_option( 'recommending_actions', array()); $bookstore_exhibition_plugins = $this->bookstore_exhibition_get_recommended_plugins(); if ($bookstore_exhibition_plugins) { foreach ($bookstore_exhibition_plugins as $bookstore_exhibition_key => $bookstore_exhibition_plugin) { $bookstore_exhibition_action = array(); if (!isset($bookstore_exhibition_plugin['slug'])) { continue; } $bookstore_exhibition_action['id'] = 'install_' . $bookstore_exhibition_plugin['slug']; $bookstore_exhibition_action['desc'] = ''; if (isset($bookstore_exhibition_plugin['desc'])) { $bookstore_exhibition_action['desc'] = $bookstore_exhibition_plugin['desc']; } $bookstore_exhibition_action['name'] = ''; if (isset($bookstore_exhibition_plugin['name'])) { $bookstore_exhibition_action['title'] = $bookstore_exhibition_plugin['name']; } $bookstore_exhibition_link_and_is_done = $this->bookstore_exhibition_get_plugin_buttion($bookstore_exhibition_plugin['slug'], $bookstore_exhibition_plugin['name'], $bookstore_exhibition_plugin['function']); $bookstore_exhibition_action['link'] = $bookstore_exhibition_link_and_is_done['button']; $bookstore_exhibition_action['is_done'] = $bookstore_exhibition_link_and_is_done['done']; if (!$bookstore_exhibition_action['is_done'] && (!isset($bookstore_exhibition_actions_todo[$bookstore_exhibition_action['id']]) || !$bookstore_exhibition_actions_todo[$bookstore_exhibition_action['id']])) { $bookstore_exhibition_act_count++; } $bookstore_exhibition_recommended_actions[] = $bookstore_exhibition_action; $bookstore_exhibition_actions_todo[] = array('id' => $bookstore_exhibition_action['id'], 'watch' => true); } return array('count' => $bookstore_exhibition_act_count, 'actions' => $bookstore_exhibition_recommended_actions); } } public function bookstore_exhibition_get_recommended_plugins() { $bookstore_exhibition_plugins = apply_filters('bookstore_exhibition_recommended_plugins', array()); return $bookstore_exhibition_plugins; } public function bookstore_exhibition_get_plugin_buttion($slug, $name, $function) { $bookstore_exhibition_is_done = false; $bookstore_exhibition_button_html = ''; $bookstore_exhibition_is_installed = $this->is_plugin_installed($slug); $bookstore_exhibition_plugin_path = $this->get_plugin_basename_from_slug($slug); $bookstore_exhibition_is_activeted = (class_exists($function)) ? true : false; if (!$bookstore_exhibition_is_installed) { $bookstore_exhibition_plugin_install_url = add_query_arg( array( 'action' => 'install-plugin', 'plugin' => $slug, ), self_admin_url('update.php') ); $bookstore_exhibition_plugin_install_url = wp_nonce_url($bookstore_exhibition_plugin_install_url, 'install-plugin_' . esc_attr($slug)); $bookstore_exhibition_button_html = sprintf('%5$s', esc_attr($slug), esc_url($bookstore_exhibition_plugin_install_url), sprintf(esc_html__('Install %s Now', 'bookstore-exhibition'), esc_html($name)), esc_html($name), esc_html__('Install & Activate', 'bookstore-exhibition') ); } elseif ($bookstore_exhibition_is_installed && !$bookstore_exhibition_is_activeted) { $bookstore_exhibition_plugin_activate_link = add_query_arg( array( 'action' => 'activate', 'plugin' => rawurlencode($bookstore_exhibition_plugin_path), 'plugin_status' => 'all', 'paged' => '1', '_wpnonce' => wp_create_nonce('activate-plugin_' . $bookstore_exhibition_plugin_path), ), self_admin_url('plugins.php') ); $bookstore_exhibition_button_html = sprintf('%5$s', esc_attr($slug), esc_url($bookstore_exhibition_plugin_activate_link), sprintf(esc_html__('Activate %s Now', 'bookstore-exhibition'), esc_html($name)), esc_html($name), esc_html__('Activate', 'bookstore-exhibition') ); } elseif ($bookstore_exhibition_is_activeted) { $bookstore_exhibition_button_html = sprintf('', esc_html__('Active', 'bookstore-exhibition')); $bookstore_exhibition_is_done = true; } return array('done' => $bookstore_exhibition_is_done, 'button' => $bookstore_exhibition_button_html); } public function is_plugin_installed($slug) { $bookstore_exhibition_installed_plugins = $this->get_installed_plugins(); // Retrieve a list of all installed plugins (WP cached). $bookstore_exhibition_file_path = $this->get_plugin_basename_from_slug($slug); return (!empty($bookstore_exhibition_installed_plugins[$bookstore_exhibition_file_path])); } public function get_plugin_basename_from_slug($slug) { $bookstore_exhibition_keys = array_keys($this->get_installed_plugins()); foreach ($bookstore_exhibition_keys as $bookstore_exhibition_key) { if (preg_match('|^' . $slug . '/|', $bookstore_exhibition_key)) { return $bookstore_exhibition_key; } } return $slug; } public function get_installed_plugins() { if (!function_exists('get_plugins')) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } return get_plugins(); } public function create_pattern_setup_builder() { $edit_page = admin_url().'post-new.php?post_type=page&create_pattern=true'; echo json_encode(['page_id'=>'','edit_page_url'=> $edit_page ]); exit; } } } /** * Kicking this off by calling 'get_instance()' method */ Bookstore_Exhibition_Plugin_Activation_WPElemento_Importer::get_instance();