jetpack = Jetpack::init(); self::$block_page_rendering_for_idc = ( Jetpack::validate_sync_error_idc_option() && ! Jetpack_Options::get_option( 'safe_mode_confirmed' ) ); } function add_actions() { global $pagenow; // If user is not an admin and site is in Dev Mode, don't do anything if ( ! current_user_can( 'manage_options' ) && Jetpack::is_development_mode() ) { return; } // Don't add in the modules page unless modules are available! if ( $this->dont_show_if_not_active && ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) { return; } // Initialize menu item for the page in the admin $hook = $this->get_page_hook(); // Attach hooks common to all Jetpack admin pages based on the created // hook add_action( "load-$hook", array( $this, 'admin_help' ) ); add_action( "load-$hook", array( $this, 'admin_page_load' ) ); add_action( "admin_print_styles-$hook", array( $this, 'admin_styles' ) ); add_action( "admin_print_scripts-$hook", array( $this, 'admin_scripts' ) ); if ( ! self::$block_page_rendering_for_idc ) { add_action( "admin_print_styles-$hook", array( $this, 'additional_styles' ) ); } // If someone just activated Jetpack, let's show them a fullscreen connection banner. if ( ( 'admin.php' === $pagenow && isset( $_GET['page'] ) && 'jetpack' === $_GET['page'] ) && ! Jetpack::is_active() && current_user_can( 'jetpack_connect' ) && ! Jetpack::is_development_mode() ) { add_action( 'admin_enqueue_scripts', array( 'Jetpack_Connection_Banner', 'enqueue_banner_scripts' ) ); add_action( 'admin_print_styles', array( Jetpack::init(), 'admin_banner_styles' ) ); add_action( 'admin_notices', array( 'Jetpack_Connection_Banner', 'render_connect_prompt_full_screen' ) ); delete_transient( 'activated_jetpack' ); } // Check if the site plan changed and deactivate modules accordingly. add_action( 'current_screen', array( $this, 'check_plan_deactivate_modules' ) ); // Attach page specific actions in addition to the above $this->add_page_actions( $hook ); } // Render the page with a common top and bottom part, and page specific content function render() { // We're in an IDC: we need a decision made before we show the UI again. if ( self::$block_page_rendering_for_idc ) { return; } // Check if we are looking at the main dashboard if ( isset( $_GET['page'] ) && 'jetpack' === $_GET['page'] ) { $this->page_render(); return; } self::wrap_ui( array( $this, 'page_render' ) ); } function admin_help() { $this->jetpack->admin_help(); } function admin_page_load() { // This is big. For the moment, just call the existing one. $this->jetpack->admin_page_load(); } // Add page specific scripts and jetpack stats for all menu pages function admin_scripts() { $this->page_admin_scripts(); // Delegate to inheriting class add_action( 'admin_footer', array( $this->jetpack, 'do_stats' ) ); } // Enqueue the Jetpack admin stylesheet function admin_styles() { $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; wp_enqueue_style( 'jetpack-admin', plugins_url( "css/jetpack-admin{$min}.css", JETPACK__PLUGIN_FILE ), array( 'genericons' ), JETPACK__VERSION . '-20121016' ); wp_style_add_data( 'jetpack-admin', 'rtl', 'replace' ); wp_style_add_data( 'jetpack-admin', 'suffix', $min ); } /** * Checks if REST API is enabled. * * @since 4.4.2 * * @return bool */ function is_rest_api_enabled() { return /** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */ apply_filters( 'rest_enabled', true ) && /** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */ apply_filters( 'rest_jsonp_enabled', true ) && /** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */ apply_filters( 'rest_authentication_errors', true ); } /** * Checks the site plan and deactivates modules that were active but are no longer included in the plan. * * @since 4.4.0 * * @param $page * * @return array */ function check_plan_deactivate_modules( $page ) { if ( Jetpack::is_development_mode() || ! in_array( $page->base, array( 'toplevel_page_jetpack', 'admin_page_jetpack_modules', 'jetpack_page_vaultpress', 'jetpack_page_stats', 'jetpack_page_akismet-key-config', ) ) ) { return false; } $current = Jetpack_Plan::get(); $to_deactivate = array(); if ( isset( $current['product_slug'] ) ) { $active = Jetpack::get_active_modules(); switch ( $current['product_slug'] ) { case 'jetpack_free': $to_deactivate = array( 'seo-tools', 'videopress', 'google-analytics', 'wordads', 'search' ); break; case 'jetpack_personal': case 'jetpack_personal_monthly': $to_deactivate = array( 'seo-tools', 'videopress', 'google-analytics', 'wordads', 'search' ); break; case 'jetpack_premium': case 'jetpack_premium_monthly': $to_deactivate = array( 'seo-tools', 'google-analytics', 'search' ); break; } $to_deactivate = array_intersect( $active, $to_deactivate ); $to_leave_enabled = array(); foreach ( $to_deactivate as $feature ) { if ( Jetpack_Plan::supports( $feature ) ) { $to_leave_enabled [] = $feature; } } $to_deactivate = array_diff( $to_deactivate, $to_leave_enabled ); if ( ! empty( $to_deactivate ) ) { Jetpack::update_active_modules( array_filter( array_diff( $active, $to_deactivate ) ) ); } } return array( 'current' => $current, 'deactivate' => $to_deactivate, ); } static function load_wrapper_styles() { $rtl = is_rtl() ? '.rtl' : ''; wp_enqueue_style( 'dops-css', plugins_url( "_inc/build/admin{$rtl}.css", JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION ); wp_enqueue_style( 'components-css', plugins_url( "_inc/build/style.min{$rtl}.css", JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION ); $custom_css = ' #wpcontent { padding-left: 0 !important; } #wpbody-content { background-color: #f6f6f6; } #jp-plugin-container .wrap { margin: 0 auto; max-width:45rem; padding: 0 1.5rem; } #jp-plugin-container.is-wide .wrap { max-width: 1040px; } #jp-plugin-container .wrap .jetpack-wrap-container { margin-top: 1em; } .wp-admin #dolly { float: none; position: relative; right: 0; left: 0; top: 0; padding: .625rem; text-align: right; background: #fff; font-size: .75rem; font-style: italic; color: #87a6bc; border-bottom: 1px #e9eff3 solid; } '; wp_add_inline_style( 'dops-css', $custom_css ); } public static function wrap_ui( $callback, $args = array() ) { $defaults = array( 'is-wide' => false, 'show-nav' => true, ); $args = wp_parse_args( $args, $defaults ); $jetpack_admin_url = admin_url( 'admin.php?page=jetpack' ); $jetpack_about_url = ( Jetpack::is_active() || Jetpack::is_development_mode() ) ? admin_url( 'admin.php?page=jetpack_about' ) : 'https://jetpack.com'; ?>