id ) { return true; } return false; } /** * Add the Sites tab to our Dashboard tabs. * * @since 1.6 * @deprecated 2.0.0 * * @param array $tabs Existing tabs. * @return array New tabs. */ function generate_sites_dashboard_tab( $tabs ) { $tabs['Sites'] = array( 'name' => __( 'Site Library', 'gp-premium' ), 'url' => admin_url( 'themes.php?page=generatepress-site-library' ), 'class' => generate_is_sites_dashboard() ? 'active' : '', ); return $tabs; } /** * Register our Site Library page. * * @since 1.7 * @deprecated 2.0.0 */ function generate_site_library_register() { add_submenu_page( 'themes.php', __( 'Site Library', 'gp-premium' ), __( 'Site Library', 'gp-premium' ), 'manage_options', 'generatepress-site-library', 'generate_sites_container' ); } /** * Set our current menu item as the GeneratePress Dashboard. * * @since 1.7 * @deprecated 2.0.0 */ function generate_site_library_fix_menu() { global $parent_file, $submenu_file, $post_type; if ( generate_is_sites_dashboard() ) { $parent_file = 'themes.php'; // phpcs:ignore -- Override necessary. $submenu_file = 'generate-options'; // phpcs:ignore -- Override necessary. } remove_submenu_page( 'themes.php', 'generatepress-site-library' ); } /** * Add our scripts for the site library. * * @since 1.8 * @deprecated 2.0.0 */ function generate_sites_do_enqueue_scripts() { if ( ! generate_is_sites_dashboard() ) { return; } $backup_data = get_option( '_generatepress_site_library_backup', array() ); wp_enqueue_script( 'generate-sites-admin', GENERATE_SITES_URL . 'assets/js/admin.js', array( 'jquery', 'wp-util', 'updates', 'generate-sites-blazy' ), GP_PREMIUM_VERSION, true ); wp_enqueue_script( 'generate-sites-download', GENERATE_SITES_URL . 'assets/js/download.js', array( 'jquery', 'generate-sites-admin' ), GP_PREMIUM_VERSION, true ); wp_enqueue_script( 'generate-sites-blazy', GENERATE_SITES_URL . 'assets/js/blazy.min.js', array(), GP_PREMIUM_VERSION, true ); wp_localize_script( 'generate-sites-admin', 'generate_sites_params', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'nonce' => wp_create_nonce( 'generate_sites_nonce' ), 'importing_options' => __( 'Importing options', 'gp-premium' ), 'backing_up_options' => __( 'Backing up options', 'gp-premium' ), 'checking_demo_content' => __( 'Checking demo content', 'gp-premium' ), 'downloading_content' => __( 'Downloading content', 'gp-premium' ), 'importing_content' => __( 'Importing content', 'gp-premium' ), 'importing_site_options' => __( 'Importing site options', 'gp-premium' ), 'importing_widgets' => __( 'Importing widgets', 'gp-premium' ), 'activating_plugins' => __( 'Activating plugins', 'gp-premium' ), 'installing_plugins' => __( 'Installing plugins', 'gp-premium' ), 'automatic_plugins' => __( 'Automatic', 'gp-premium' ), 'manual_plugins' => __( 'Manual', 'gp-premium' ), 'home_url' => home_url(), 'restoreThemeOptions' => __( 'Restoring theme options', 'gp-premium' ), 'restoreSiteOptions' => __( 'Restoring site options', 'gp-premium' ), 'restoreContent' => __( 'Removing imported content', 'gp-premium' ), 'restorePlugins' => __( 'Deactivating imported plugins', 'gp-premium' ), 'restoreWidgets' => __( 'Restoring widgets', 'gp-premium' ), 'restoreCSS' => __( 'Restoring CSS', 'gp-premium' ), 'cleanUp' => __( 'Cleaning up', 'gp-premium' ), 'hasContentBackup' => ! empty( $backup_data['content'] ), 'confirmRemoval' => __( 'This process makes changes to your database. If you have existing data, be sure to create a backup as a precaution.', 'gp-premium' ), ) ); wp_enqueue_style( 'generate-sites-admin', GENERATE_SITES_URL . 'assets/css/admin.css', array(), GP_PREMIUM_VERSION ); wp_enqueue_style( 'generate-premium-dashboard', plugin_dir_url( dirname( __FILE__ ) ) . 'inc/assets/dashboard.css', array(), GP_PREMIUM_VERSION ); } /** * Add a body class while in the Site Library. * * @since 1.8 * @deprecated 2.0.0 * * @param array $classes Current body classes. * @return array Existing and our new body classes */ function generate_sites_do_admin_body_classes( $classes ) { if ( generate_is_sites_dashboard() ) { $classes .= ' generate-sites'; } return $classes; } /** * Add an opening wrapper element for our Dashboard tabs and page builder links. * * @since 1.8 */ function generate_sites_add_tabs_wrapper_open() { echo '
'; } /** * Adds our Site dashboard container. * * @since 1.6 * @deprecated 2.0.0 */ function generate_sites_container() { ?>
'; if ( ! empty( $page_builders ) ) : ?>

%2$s
', esc_html( wp_create_nonce( 'refresh_sites_nonce' ) ), __( 'Refresh Sites', 'gp-premium' ), esc_url( admin_url( 'themes.php?page=generatepress-site-library' ) ), __( 'Reload Page', 'gp-premium' ) ); ?> get_post_types( array( 'public' => true ) ), 'showposts' => -1, 'meta_query' => array( array( 'key' => '_generate-select-page-header', 'compare' => 'EXISTS', ), ), ); $posts = get_posts( $args ); $new_values = array(); foreach ( $posts as $post ) { $page_header_id = get_post_meta( $post->ID, '_generate-select-page-header', true ); if ( $page_header_id ) { $new_values[ $post->ID ] = $page_header_id; } } return $new_values; } /** * Get our Element display locations. * * @since 1.7 * @deprecated 2.0.0 * * @return array */ function generate_sites_export_elements_location() { $args = array( 'post_type' => 'gp_elements', 'showposts' => -1, ); $posts = get_posts( $args ); $new_values = array(); foreach ( $posts as $post ) { $display_conditions = get_post_meta( $post->ID, '_generate_element_display_conditions', true ); if ( $display_conditions ) { $new_values[ $post->ID ] = $display_conditions; } } return $new_values; } /** * Get our Element display locations. * * @since 1.7 * @deprecated 2.0.0 * * @return array */ function generate_sites_export_elements_exclusion() { $args = array( 'post_type' => 'gp_elements', 'showposts' => -1, ); $posts = get_posts( $args ); $new_values = array(); foreach ( $posts as $post ) { $display_conditions = get_post_meta( $post->ID, '_generate_element_exclude_conditions', true ); if ( $display_conditions ) { $new_values[ $post->ID ] = $display_conditions; } } return $new_values; } /** * List out compatible theme modules Sites can activate. * * @since 1.6 * @deprecated 2.0.0 * * @return array */ function generatepress_get_site_premium_modules() { return array( 'Backgrounds' => 'generate_package_backgrounds', 'Blog' => 'generate_package_blog', 'Colors' => 'generate_package_colors', 'Copyright' => 'generate_package_copyright', 'Elements' => 'generate_package_elements', 'Disable Elements' => 'generate_package_disable_elements', 'Hooks' => 'generate_package_hooks', 'Menu Plus' => 'generate_package_menu_plus', 'Page Header' => 'generate_package_page_header', 'Secondary Nav' => 'generate_package_secondary_nav', 'Sections' => 'generate_package_sections', 'Spacing' => 'generate_package_spacing', 'Typography' => 'generate_package_typography', 'WooCommerce' => 'generate_package_woocommerce', ); } /** * Don't allow Sites to modify these options. * * @since 1.6 * @deprecated 2.0.0 * * @return array */ function generatepress_sites_disallowed_options() { return array( 'admin_email', 'siteurl', 'home', 'blog_charset', 'blog_public', 'current_theme', 'stylesheet', 'template', 'default_role', 'mailserver_login', 'mailserver_pass', 'mailserver_port', 'mailserver_url', 'permalink_structure', 'rewrite_rules', 'users_can_register', ); } /** * Add our GeneratePress Site export checkbox to the Export module. * * @since 1.7 * @deprecated 2.0.0 */ function generatepress_sites_add_export_checkbox() { if ( ! apply_filters( 'generate_show_generatepress_site_export_option', false ) ) { return; } ?>
$key ) { if ( 'activated' === get_option( $key ) ) { $data['modules'][ $name ] = $key; } } // Site options. $data['site_options']['nav_menu_locations'] = get_theme_mod( 'nav_menu_locations' ); $data['site_options']['custom_logo'] = wp_get_attachment_url( get_theme_mod( 'custom_logo' ) ); $data['site_options']['show_on_front'] = get_option( 'show_on_front' ); $data['site_options']['page_on_front'] = get_option( 'page_on_front' ); $data['site_options']['page_for_posts'] = get_option( 'page_for_posts' ); // Page header. $data['site_options']['page_header_global_locations'] = get_option( 'generate_page_header_global_locations' ); $data['site_options']['page_headers'] = generate_sites_export_page_headers(); // Elements. $data['site_options']['element_locations'] = generate_sites_export_elements_location(); $data['site_options']['element_exclusions'] = generate_sites_export_elements_exclusion(); // Custom CSS. if ( function_exists( 'wp_get_custom_css_post' ) ) { $data['custom_css'] = wp_get_custom_css_post()->post_content; } // WooCommerce. if ( is_plugin_active( 'woocommerce/woocommerce.php' ) ) { $data['site_options']['woocommerce_shop_page_id'] = get_option( 'woocommerce_shop_page_id' ); $data['site_options']['woocommerce_cart_page_id'] = get_option( 'woocommerce_cart_page_id' ); $data['site_options']['woocommerce_checkout_page_id'] = get_option( 'woocommerce_checkout_page_id' ); $data['site_options']['woocommerce_myaccount_page_id'] = get_option( 'woocommerce_myaccount_page_id' ); $data['site_options']['woocommerce_single_image_width'] = get_option( 'woocommerce_single_image_width' ); $data['site_options']['woocommerce_thumbnail_image_width'] = get_option( 'woocommerce_thumbnail_image_width' ); $data['site_options']['woocommerce_thumbnail_cropping'] = get_option( 'woocommerce_thumbnail_cropping' ); $data['site_options']['woocommerce_shop_page_display'] = get_option( 'woocommerce_shop_page_display' ); $data['site_options']['woocommerce_category_archive_display'] = get_option( 'woocommerce_category_archive_display' ); $data['site_options']['woocommerce_default_catalog_orderby'] = get_option( 'woocommerce_default_catalog_orderby' ); } // Elementor. if ( is_plugin_active( 'elementor/elementor.php' ) ) { $data['site_options']['elementor_container_width'] = get_option( 'elementor_container_width' ); $data['site_options']['elementor_cpt_support'] = get_option( 'elementor_cpt_support' ); $data['site_options']['elementor_css_print_method'] = get_option( 'elementor_css_print_method' ); $data['site_options']['elementor_default_generic_fonts'] = get_option( 'elementor_default_generic_fonts' ); $data['site_options']['elementor_disable_color_schemes'] = get_option( 'elementor_disable_color_schemes' ); $data['site_options']['elementor_disable_typography_schemes'] = get_option( 'elementor_disable_typography_schemes' ); $data['site_options']['elementor_editor_break_lines'] = get_option( 'elementor_editor_break_lines' ); $data['site_options']['elementor_exclude_user_roles'] = get_option( 'elementor_exclude_user_roles' ); $data['site_options']['elementor_global_image_lightbox'] = get_option( 'elementor_global_image_lightbox' ); $data['site_options']['elementor_page_title_selector'] = get_option( 'elementor_page_title_selector' ); $data['site_options']['elementor_scheme_color'] = get_option( 'elementor_scheme_color' ); $data['site_options']['elementor_scheme_color-picker'] = get_option( 'elementor_scheme_color-picker' ); $data['site_options']['elementor_scheme_typography'] = get_option( 'elementor_scheme_typography' ); $data['site_options']['elementor_space_between_widgets'] = get_option( 'elementor_space_between_widgets' ); $data['site_options']['elementor_stretched_section_container'] = get_option( 'elementor_stretched_section_container' ); $data['site_options']['elementor_load_fa4_shim'] = get_option( 'elementor_load_fa4_shim' ); $data['site_options']['elementor_active_kit'] = get_option( 'elementor_active_kit' ); } // Beaver Builder. if ( is_plugin_active( 'beaver-builder-lite-version/fl-builder.php' ) || is_plugin_active( 'bb-plugin/fl-builder.php' ) ) { $data['site_options']['_fl_builder_enabled_icons'] = get_option( '_fl_builder_enabled_icons' ); $data['site_options']['_fl_builder_enabled_modules'] = get_option( '_fl_builder_enabled_modules' ); $data['site_options']['_fl_builder_post_types'] = get_option( '_fl_builder_post_types' ); $data['site_options']['_fl_builder_color_presets'] = get_option( '_fl_builder_color_presets' ); $data['site_options']['_fl_builder_services'] = get_option( '_fl_builder_services' ); $data['site_options']['_fl_builder_settings'] = get_option( '_fl_builder_settings' ); $data['site_options']['_fl_builder_user_access'] = get_option( '_fl_builder_user_access' ); $data['site_options']['_fl_builder_enabled_templates'] = get_option( '_fl_builder_enabled_templates' ); } // Menu Icons. if ( is_plugin_active( 'menu-icons/menu-icons.php' ) ) { $data['site_options']['menu-icons'] = get_option( 'menu-icons' ); } // Ninja Forms. if ( is_plugin_active( 'ninja-forms/ninja-forms.php' ) ) { $data['site_options']['ninja_forms_settings'] = get_option( 'ninja_forms_settings' ); } // Social Warfare. if ( is_plugin_active( 'social-warfare/social-warfare.php' ) ) { $data['site_options']['socialWarfareOptions'] = get_option( 'socialWarfareOptions' ); } // Elements Plus. if ( is_plugin_active( 'elements-plus/elements-plus.php' ) ) { $data['site_options']['elements_plus_settings'] = get_option( 'elements_plus_settings' ); } // Ank Google Map. if ( is_plugin_active( 'ank-google-map/ank-google-map.php' ) ) { $data['site_options']['ank_google_map'] = get_option( 'ank_google_map' ); } // GP Social Share. if ( is_plugin_active( 'gp-social-share-svg/gp-social-share.php' ) ) { $data['site_options']['gp_social_settings'] = get_option( 'gp_social_settings' ); } // Active plugins. $active_plugins = get_option( 'active_plugins' ); $all_plugins = get_plugins(); $ignore = apply_filters( 'generate_sites_ignore_plugins', array( 'gp-premium/gp-premium.php', 'widget-importer-exporter/widget-importer-exporter.php', ) ); foreach ( $ignore as $plugin ) { unset( $all_plugins[ $plugin ] ); } $activated_plugins = array(); foreach ( $active_plugins as $p ) { if ( isset( $all_plugins[ $p ] ) ) { $activated_plugins[ $all_plugins[ $p ]['Name'] ] = $p; } } $data['plugins'] = $activated_plugins; return $data; } /** * Get our sites from the site server. * * @since 1.12.0' * @deprecated 2.0.0 */ function generate_get_sites_from_library() { $remote_sites = get_transient( 'generatepress_sites' ); $trusted_authors = get_transient( 'generatepress_sites_trusted_providers' ); if ( empty( $remote_sites ) ) { $sites = array(); $data = wp_safe_remote_get( 'https://gpsites.co/wp-json/wp/v2/sites?per_page=100' ); if ( is_wp_error( $data ) ) { set_transient( 'generatepress_sites', 'no results', 5 * MINUTE_IN_SECONDS ); return; } $data = json_decode( wp_remote_retrieve_body( $data ), true ); if ( ! is_array( $data ) ) { set_transient( 'generatepress_sites', 'no results', 5 * MINUTE_IN_SECONDS ); return; } foreach ( (array) $data as $site ) { $sites[ $site['name'] ] = array( 'name' => $site['name'], 'directory' => $site['directory'], 'preview_url' => $site['preview_url'], 'author_name' => $site['author_name'], 'author_url' => $site['author_url'], 'description' => $site['description'], 'page_builder' => $site['page_builder'], 'min_version' => $site['min_version'], 'uploads_url' => $site['uploads_url'], 'plugins' => $site['plugins'], 'documentation' => $site['documentation'], ); } $sites = apply_filters( 'generate_add_sites', $sites ); set_transient( 'generatepress_sites', $sites, 24 * HOUR_IN_SECONDS ); } if ( empty( $trusted_authors ) ) { $trusted_authors = wp_safe_remote_get( 'https://gpsites.co/wp-json/sites/site' ); if ( is_wp_error( $trusted_authors ) || empty( $trusted_authors ) ) { set_transient( 'generatepress_sites_trusted_providers', 'no results', 5 * MINUTE_IN_SECONDS ); return; } $trusted_authors = json_decode( wp_remote_retrieve_body( $trusted_authors ), true ); $authors = array(); foreach ( (array) $trusted_authors['trusted_author'] as $author ) { $authors[] = $author; } set_transient( 'generatepress_sites_trusted_providers', $authors, 24 * HOUR_IN_SECONDS ); } } /** * Fetch our sites and trusted authors. Stores them in their own transients. * We use current_screen instead of admin_init so we can check what admin page we're on. * * @since 1.6 * @deprecated 2.0.0 */ function generatepress_sites_init() { $screen = get_current_screen(); if ( 'appearance_page_generate-options' === $screen->id || 'appearance_page_generatepress-site-library' === $screen->id ) { generate_get_sites_from_library(); } } /** * Initiate our Sites once everything has loaded. * We use current_screen instead of admin_init so we can check what admin page we're on. * * @since 1.6 * @deprecated 2.0.0 */ function generatepress_sites_output() { if ( ! class_exists( 'GeneratePress_Site' ) ) { return; // Bail if we don't have the needed class. } $sites = get_transient( 'generatepress_sites' ); if ( empty( $sites ) || ! is_array( $sites ) ) { add_action( 'generate_inside_sites_container', 'generatepress_sites_no_results_error' ); return; } if ( apply_filters( 'generate_sites_randomize', false ) ) { shuffle( $sites ); } foreach ( $sites as $site ) { new GeneratePress_Site( $site ); } } /** * Show an error message when no sites exist. * * @since 1.8.2 * @deprecated 2.0.0 */ function generatepress_sites_no_results_error() { printf( '
%1$s %2$s
', __( 'No sites found.', 'gp-premium' ), __( 'Why?', 'gp-premium' ), 'https://docs.generatepress.com/article/site-library-unavailable/' ); } /** * Build each site UI. * * @deprecated 2.0.0 */ class GeneratePress_Site { /** * Get it rockin' * * @param array $config The site configuration. */ public function __construct( $config = array() ) { // Do nothing. } }