class-jetpack-about-page.php
3 years ago
class-jetpack-redux-state-helper.php
1 year ago
class.jetpack-admin-page.php
1 year ago
class.jetpack-landing-page.php
2 years ago
class.jetpack-react-page.php
2 years ago
class.jetpack-settings-page.php
3 years ago
class.jetpack-admin-page.php
403 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Main class file for Jetpack Admin pages. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | use Automattic\Jetpack\Current_Plan as Jetpack_Plan; |
| 9 | use Automattic\Jetpack\Identity_Crisis; |
| 10 | use Automattic\Jetpack\Redirect; |
| 11 | use Automattic\Jetpack\Status; |
| 12 | |
| 13 | /** |
| 14 | * Shared logic between Jetpack admin pages. |
| 15 | */ |
| 16 | abstract class Jetpack_Admin_Page { |
| 17 | /** |
| 18 | * Add page specific actions given the page hook. |
| 19 | * |
| 20 | * @param string $hook Hook of current page. |
| 21 | */ |
| 22 | abstract public function add_page_actions( $hook ); |
| 23 | |
| 24 | /** |
| 25 | * Create a menu item for the page and returns the hook. |
| 26 | * |
| 27 | * @return string|false Return value from WordPress's `add_menu_page()` or `add_submenu_page()`. |
| 28 | */ |
| 29 | abstract public function get_page_hook(); |
| 30 | |
| 31 | /** |
| 32 | * Enqueue and localize page specific scripts. |
| 33 | */ |
| 34 | abstract public function page_admin_scripts(); |
| 35 | |
| 36 | /** |
| 37 | * Render page specific HTML |
| 38 | */ |
| 39 | abstract public function page_render(); |
| 40 | |
| 41 | /** |
| 42 | * Function called after admin_styles to load any additional needed styles. |
| 43 | * |
| 44 | * @since 4.3.0 |
| 45 | */ |
| 46 | public function additional_styles() {} |
| 47 | |
| 48 | /** |
| 49 | * Add common page actions and attach page-specific actions. |
| 50 | */ |
| 51 | public function add_actions() { |
| 52 | $is_offline_mode = ( new Status() )->is_offline_mode(); |
| 53 | |
| 54 | // If user is not an admin and site is in Offline Mode or not connected yet then don't do anything. |
| 55 | if ( ! current_user_can( 'manage_options' ) && ( $is_offline_mode || ! Jetpack::is_connection_ready() ) ) { |
| 56 | return; |
| 57 | } |
| 58 | |
| 59 | // Is Jetpack not connected and not offline? |
| 60 | // True means that Jetpack is NOT connected and NOT in offline mode. |
| 61 | // If Jetpack is connected OR in offline mode, this will be false. |
| 62 | $connectable = ! Jetpack::is_connection_ready() && ! $is_offline_mode; |
| 63 | |
| 64 | // Don't add in the modules page unless modules are available! |
| 65 | if ( $this->dont_show_if_not_active && $connectable ) { |
| 66 | return; |
| 67 | } |
| 68 | |
| 69 | // Initialize menu item for the page in the admin. |
| 70 | $hook = $this->get_page_hook(); |
| 71 | |
| 72 | // Attach hooks common to all Jetpack admin pages based on the created hook. |
| 73 | add_action( "load-$hook", array( $this, 'admin_page_load' ) ); |
| 74 | add_action( "admin_print_styles-$hook", array( $this, 'admin_styles' ) ); |
| 75 | add_action( "admin_print_scripts-$hook", array( $this, 'admin_scripts' ) ); |
| 76 | add_action( "admin_print_styles-$hook", array( $this, 'additional_styles' ) ); |
| 77 | |
| 78 | // Check if the site plan changed and deactivate modules accordingly. |
| 79 | add_action( 'current_screen', array( $this, 'check_plan_deactivate_modules' ) ); |
| 80 | |
| 81 | // Attach page specific actions in addition to the above. |
| 82 | $this->add_page_actions( $hook ); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Render the page with a common top and bottom part, and page specific content. |
| 87 | */ |
| 88 | public function render() { |
| 89 | /** This action is documented in class.jetpack.php */ |
| 90 | do_action( 'jetpack_initialize_tracking' ); |
| 91 | |
| 92 | // We're in an IDC: we need a decision made before we show the UI again. |
| 93 | if ( $this->block_page_rendering_for_idc() ) { |
| 94 | return; |
| 95 | } |
| 96 | |
| 97 | // Check if we are looking at the main dashboard. |
| 98 | if ( isset( $_GET['page'] ) && 'jetpack' === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- View logic. |
| 99 | $this->page_render(); |
| 100 | return; |
| 101 | } |
| 102 | |
| 103 | $args = array(); |
| 104 | |
| 105 | // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
| 106 | if ( isset( $_GET['page'] ) && 'jetpack_modules' === $_GET['page'] ) { |
| 107 | $args['is-wide'] = true; |
| 108 | } |
| 109 | |
| 110 | self::wrap_ui( array( $this, 'page_render' ), $args ); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Call the existing admin page events. |
| 115 | */ |
| 116 | public function admin_page_load() { |
| 117 | Jetpack::init()->admin_page_load(); |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Add page specific scripts and jetpack stats for all menu pages. |
| 122 | */ |
| 123 | public function admin_scripts() { |
| 124 | $this->page_admin_scripts(); // Delegate to inheriting class. |
| 125 | add_action( 'admin_footer', array( Jetpack::init(), 'do_stats' ) ); |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Enqueue the Jetpack admin stylesheet. |
| 130 | */ |
| 131 | public function admin_styles() { |
| 132 | $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
| 133 | |
| 134 | wp_enqueue_style( 'jetpack-admin', plugins_url( "css/jetpack-admin{$min}.css", JETPACK__PLUGIN_FILE ), array( 'genericons', 'jetpack-connection' ), JETPACK__VERSION . '-20121016' ); |
| 135 | wp_style_add_data( 'jetpack-admin', 'rtl', 'replace' ); |
| 136 | wp_style_add_data( 'jetpack-admin', 'suffix', $min ); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Checks if REST API is enabled. |
| 141 | * |
| 142 | * @since 4.4.2 |
| 143 | * |
| 144 | * @return bool |
| 145 | */ |
| 146 | public function is_rest_api_enabled() { |
| 147 | return /** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */ |
| 148 | apply_filters( 'rest_enabled', true ) && |
| 149 | /** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */ |
| 150 | apply_filters( 'rest_authentication_errors', true ); |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Checks the site plan and deactivates modules that were active but are no longer included in the plan. |
| 155 | * |
| 156 | * @since 4.4.0 |
| 157 | * |
| 158 | * @param WP_Screen $page Current WP_Screen object. |
| 159 | * |
| 160 | * @return array |
| 161 | */ |
| 162 | public function check_plan_deactivate_modules( $page ) { |
| 163 | if ( |
| 164 | ( new Status() )->is_offline_mode() |
| 165 | || ! in_array( |
| 166 | $page->base, |
| 167 | array( |
| 168 | 'toplevel_page_jetpack', |
| 169 | 'admin_page_jetpack_modules', |
| 170 | 'jetpack_page_vaultpress', |
| 171 | 'jetpack_page_stats', |
| 172 | 'jetpack_page_akismet-key-config', |
| 173 | ), |
| 174 | true |
| 175 | ) |
| 176 | ) { |
| 177 | return false; |
| 178 | } |
| 179 | |
| 180 | $current = Jetpack_Plan::get(); |
| 181 | |
| 182 | $to_deactivate = array(); |
| 183 | if ( isset( $current['product_slug'] ) ) { |
| 184 | $active = Jetpack::get_active_modules(); |
| 185 | switch ( $current['product_slug'] ) { |
| 186 | case 'jetpack_free': |
| 187 | case 'jetpack_personal': |
| 188 | case 'jetpack_personal_monthly': |
| 189 | $to_deactivate = array( 'google-analytics', 'wordads', 'search' ); |
| 190 | break; |
| 191 | case 'jetpack_premium': |
| 192 | case 'jetpack_premium_monthly': |
| 193 | $to_deactivate = array( 'google-analytics', 'search' ); |
| 194 | break; |
| 195 | } |
| 196 | $to_deactivate = array_intersect( $active, $to_deactivate ); |
| 197 | |
| 198 | $to_leave_enabled = array(); |
| 199 | foreach ( $to_deactivate as $feature ) { |
| 200 | if ( Jetpack_Plan::supports( $feature ) ) { |
| 201 | $to_leave_enabled [] = $feature; |
| 202 | } |
| 203 | } |
| 204 | $to_deactivate = array_diff( $to_deactivate, $to_leave_enabled ); |
| 205 | |
| 206 | if ( ! empty( $to_deactivate ) ) { |
| 207 | Jetpack::update_active_modules( array_filter( array_diff( $active, $to_deactivate ) ) ); |
| 208 | } |
| 209 | } |
| 210 | return array( |
| 211 | 'current' => $current, |
| 212 | 'deactivate' => $to_deactivate, |
| 213 | ); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Enqueue inline wrapper styles for the main container. |
| 218 | */ |
| 219 | public static function load_wrapper_styles() { |
| 220 | $rtl = is_rtl() ? '.rtl' : ''; |
| 221 | wp_enqueue_style( 'dops-css', plugins_url( "_inc/build/admin{$rtl}.css", JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION ); |
| 222 | wp_enqueue_style( 'components-css', plugins_url( "_inc/build/style.min{$rtl}.css", JETPACK__PLUGIN_FILE ), array( 'wp-components' ), JETPACK__VERSION ); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Build header, content, and footer for admin page. |
| 227 | * |
| 228 | * @param callable $callback Callback to produce the content of the page. The callback is responsible for any needed escaping. |
| 229 | * @param array $args Options for the wrapping. Also passed to the `jetpack_admin_pages_wrap_ui_after_callback` action. |
| 230 | * - is-wide: (bool) Set the "is-wide" class on the wrapper div, which increases the max width. Default false. |
| 231 | * - show-nav: (bool) Whether to show the navigation bar at the top of the page. Default true. |
| 232 | */ |
| 233 | public static function wrap_ui( $callback, $args = array() ) { |
| 234 | $defaults = array( |
| 235 | 'is-wide' => false, |
| 236 | 'show-nav' => true, |
| 237 | ); |
| 238 | $args = wp_parse_args( $args, $defaults ); |
| 239 | |
| 240 | // Is Jetpack not connected and not offline? |
| 241 | // True means that Jetpack is NOT connected and NOT in offline mode. |
| 242 | // If Jetpack is connected OR in offline mode, this will be false. |
| 243 | $connectable = ! Jetpack::is_connection_ready() && ! ( new Status() )->is_offline_mode(); |
| 244 | |
| 245 | $jetpack_admin_url = admin_url( 'admin.php?page=jetpack' ); |
| 246 | $jetpack_about_url = ! $connectable |
| 247 | ? admin_url( 'admin.php?page=jetpack_about' ) |
| 248 | : Redirect::get_url( 'jetpack' ); |
| 249 | |
| 250 | $jetpack_privacy_url = ! $connectable |
| 251 | ? $jetpack_admin_url . '#/privacy' |
| 252 | : Redirect::get_url( 'a8c-privacy' ); |
| 253 | |
| 254 | $external_link_icon = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" class="jp-footer__menu-item__icon" aria-hidden="true" focusable="false"><path d="M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"></path></svg>'; |
| 255 | |
| 256 | ?> |
| 257 | <div id="jp-plugin-container" class=" |
| 258 | <?php |
| 259 | if ( $args['is-wide'] ) { |
| 260 | echo 'is-wide'; } |
| 261 | ?> |
| 262 | "> |
| 263 | |
| 264 | <div class="jp-masthead jp-masthead-middle"> |
| 265 | <div class="jp-masthead__inside-container"> |
| 266 | <div class="jp-masthead__logo-container"> |
| 267 | <a class="jp-masthead__logo-link" href="<?php echo esc_url( $jetpack_admin_url ); ?>"> |
| 268 | <svg class="jetpack-logo__masthead" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" height="40" viewBox="0 0 118 32"><path fill="#069e08" d="M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16s16-7.2,16-16S24.8,0,16,0z M15,19H7l8-16V19z M17,29V13h8L17,29z"></path><path d="M41.3,26.6c-0.5-0.7-0.9-1.4-1.3-2.1c2.3-1.4,3-2.5,3-4.6V8h-3V6h6v13.4C46,22.8,45,24.8,41.3,26.6z"></path><path d="M65,18.4c0,1.1,0.8,1.3,1.4,1.3c0.5,0,2-0.2,2.6-0.4v2.1c-0.9,0.3-2.5,0.5-3.7,0.5c-1.5,0-3.2-0.5-3.2-3.1V12H60v-2h2.1V7.1 H65V10h4v2h-4V18.4z"></path><path d="M71,10h3v1.3c1.1-0.8,1.9-1.3,3.3-1.3c2.5,0,4.5,1.8,4.5,5.6s-2.2,6.3-5.8,6.3c-0.9,0-1.3-0.1-2-0.3V28h-3V10z M76.5,12.3 c-0.8,0-1.6,0.4-2.5,1.2v5.9c0.6,0.1,0.9,0.2,1.8,0.2c2,0,3.2-1.3,3.2-3.9C79,13.4,78.1,12.3,76.5,12.3z"></path><path d="M93,22h-3v-1.5c-0.9,0.7-1.9,1.5-3.5,1.5c-1.5,0-3.1-1.1-3.1-3.2c0-2.9,2.5-3.4,4.2-3.7l2.4-0.3v-0.3c0-1.5-0.5-2.3-2-2.3 c-0.7,0-2.3,0.5-3.7,1.1L84,11c1.2-0.4,3-1,4.4-1c2.7,0,4.6,1.4,4.6,4.7L93,22z M90,16.4l-2.2,0.4c-0.7,0.1-1.4,0.5-1.4,1.6 c0,0.9,0.5,1.4,1.3,1.4s1.5-0.5,2.3-1V16.4z"></path><path d="M104.5,21.3c-1.1,0.4-2.2,0.6-3.5,0.6c-4.2,0-5.9-2.4-5.9-5.9c0-3.7,2.3-6,6.1-6c1.4,0,2.3,0.2,3.2,0.5V13 c-0.8-0.3-2-0.6-3.2-0.6c-1.7,0-3.2,0.9-3.2,3.6c0,2.9,1.5,3.8,3.3,3.8c0.9,0,1.9-0.2,3.2-0.7V21.3z"></path><path d="M110,15.2c0.2-0.3,0.2-0.8,3.8-5.2h3.7l-4.6,5.7l5,6.3h-3.7l-4.2-5.8V22h-3V6h3V15.2z"></path><path d="M58.5,21.3c-1.5,0.5-2.7,0.6-4.2,0.6c-3.6,0-5.8-1.8-5.8-6c0-3.1,1.9-5.9,5.5-5.9s4.9,2.5,4.9,4.9c0,0.8,0,1.5-0.1,2h-7.3 c0.1,2.5,1.5,2.8,3.6,2.8c1.1,0,2.2-0.3,3.4-0.7C58.5,19,58.5,21.3,58.5,21.3z M56,15c0-1.4-0.5-2.9-2-2.9c-1.4,0-2.3,1.3-2.4,2.9 C51.6,15,56,15,56,15z"></path></svg> |
| 269 | </a> |
| 270 | </div> |
| 271 | <?php |
| 272 | if ( $args['show-nav'] ) : |
| 273 | ?> |
| 274 | <div class="jp-masthead__nav"> |
| 275 | <?php |
| 276 | if ( is_network_admin() ) { |
| 277 | $current_screen = get_current_screen(); |
| 278 | |
| 279 | $highlight_current_sites = ( 'toplevel_page_jetpack-network' === $current_screen->id ? 'is-primary' : '' ); |
| 280 | $highlight_current_settings = ( 'jetpack_page_jetpack-settings-network' === $current_screen->id ? 'is-primary' : '' ); |
| 281 | ?> |
| 282 | <span class="dops-button-group"> |
| 283 | <?php |
| 284 | if ( current_user_can( 'jetpack_network_sites_page' ) ) { |
| 285 | ?> |
| 286 | <a href="<?php echo esc_url( network_admin_url( 'admin.php?page=jetpack' ) ); ?>" type="button" class="<?php echo esc_attr( $highlight_current_sites ); ?> dops-button is-compact" title="<?php esc_html_e( "Manage your network's Jetpack Sites.", 'jetpack' ); ?>"><?php echo esc_html_x( 'Sites', 'Navigation item', 'jetpack' ); ?></a> |
| 287 | <?php |
| 288 | } if ( current_user_can( 'jetpack_network_settings_page' ) ) { |
| 289 | ?> |
| 290 | <a href="<?php echo esc_url( network_admin_url( 'admin.php?page=jetpack-settings' ) ); ?>" type="button" class="<?php echo esc_attr( $highlight_current_settings ); ?> dops-button is-compact" title="<?php esc_html_e( "Manage your network's Jetpack Sites.", 'jetpack' ); ?>"><?php echo esc_html_x( 'Network Settings', 'Navigation item', 'jetpack' ); ?></a> |
| 291 | <?php |
| 292 | } |
| 293 | ?> |
| 294 | </span> |
| 295 | <?php } else { ?> |
| 296 | <span class="dops-button-group"> |
| 297 | <a href="<?php echo esc_url( $jetpack_admin_url ); ?>" type="button" class="dops-button is-compact"><?php esc_html_e( 'Dashboard', 'jetpack' ); ?></a> |
| 298 | <?php |
| 299 | if ( current_user_can( 'jetpack_manage_modules' ) ) { |
| 300 | ?> |
| 301 | <a href="<?php echo esc_url( $jetpack_admin_url . '#/settings' ); ?>" type="button" class="dops-button is-compact"><?php esc_html_e( 'Settings', 'jetpack' ); ?></a> |
| 302 | <?php |
| 303 | } |
| 304 | ?> |
| 305 | </span> |
| 306 | <?php } ?> |
| 307 | </div> |
| 308 | <?php endif; ?> |
| 309 | </div> |
| 310 | </div> |
| 311 | <div class="wrap"><div id="jp-admin-notices" aria-live="polite"></div></div> |
| 312 | <!-- START OF CALLBACK --> |
| 313 | <?php |
| 314 | ob_start(); |
| 315 | call_user_func( $callback ); |
| 316 | $callback_ui = ob_get_contents(); |
| 317 | ob_end_clean(); |
| 318 | echo $callback_ui;// phpcs:ignore WordPress.Security.EscapeOutput -- Callback is responsible for any needed escaping. |
| 319 | ?> |
| 320 | <!-- END OF CALLBACK --> |
| 321 | |
| 322 | <div id="jp-stats-report-bottom"> |
| 323 | <div class="wrap"> |
| 324 | <?php |
| 325 | /** |
| 326 | * Fires at the bottom of the Jetpack admin page template, after the dynamic content section. |
| 327 | * |
| 328 | * @since 10.0.0 |
| 329 | * |
| 330 | * @param string $callback The callback sent to the Jetpack_Admin_Page::wrap_ui method. |
| 331 | * @param array $args The arguments sent to the Jetpack_Admin_Page::wrap_ui method. |
| 332 | */ |
| 333 | do_action( 'jetpack_admin_pages_wrap_ui_after_callback', $callback, $args ); |
| 334 | ?> |
| 335 | </div> |
| 336 | </div> |
| 337 | |
| 338 | <div class="jp-footer jp-footer--static"> |
| 339 | <div class="jp-footer__container"> |
| 340 | <div class="jp-footer__logo"> |
| 341 | <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 32 32" class="jetpack-logo jp-footer__jetpack-symbol" aria-labelledby="jetpack-logo-title" height="16" aria-label="<?php esc_html_e( 'Jetpack logo', 'jetpack' ); ?>"> |
| 342 | <desc id="jetpack-logo-title"> |
| 343 | <?php esc_html_e( 'Jetpack Logo', 'jetpack' ); ?> |
| 344 | </desc> |
| 345 | <path fill="#000" d="M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16s16-7.2,16-16S24.8,0,16,0z M15,19H7l8-16V19z M17,29V13h8L17,29z"></path> |
| 346 | </svg> |
| 347 | <span class="jp-footer__module-name"> |
| 348 | <a href="<?php echo esc_url( Redirect::get_url( 'jetpack' ) ); ?>" target="_blank" rel="noopener noreferrer" aria-label="Jetpack 12.2-a.0"> |
| 349 | <?php esc_html_e( 'Jetpack', 'jetpack' ); ?> |
| 350 | </a> |
| 351 | </span> |
| 352 | </div> |
| 353 | <div class="jp-footer__menu"> |
| 354 | <a href="<?php echo esc_url( $jetpack_about_url ); ?>" title="<?php esc_attr__( 'About Jetpack', 'jetpack' ); ?>" class="jp-footer__menu-item"> |
| 355 | <?php echo esc_html__( 'About', 'jetpack' ); ?> |
| 356 | </a> |
| 357 | <a href="<?php echo esc_url( $jetpack_privacy_url ); ?>" rel="noopener noreferrer" title="<?php esc_html_e( "Automattic's Privacy Policy", 'jetpack' ); ?>" class="jp-footer__menu-item <?php echo ! $connectable ? 'is-external' : ''; ?> ?>" target="<?php echo ! $connectable ? '_blank' : '_self'; ?>"> |
| 358 | <?php echo esc_html_x( 'Privacy', 'Navigation item', 'jetpack' ); ?> |
| 359 | <?php echo ! $connectable ? $external_link_icon : ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 360 | </a> |
| 361 | <a href="<?php echo esc_url( Redirect::get_url( 'wpcom-tos' ) ); ?>" target="_blank" rel="noopener noreferrer" title="<?php esc_html__( 'WordPress.com Terms of Service', 'jetpack' ); ?>" class="jp-footer__menu-item is-external"> |
| 362 | <?php echo esc_html_x( 'Terms', 'Navigation item', 'jetpack' ); ?> |
| 363 | <?php echo $external_link_icon; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 364 | </a> |
| 365 | <a href="<?php echo esc_url( Redirect::get_url( 'jetpack' ) ); ?>" target="_blank" rel="noopener noreferrer" aria-label="Jetpack 12.2-a.0" class="jp-footer__menu-item is-external"> |
| 366 | Version <?php echo esc_html( JETPACK__VERSION ); ?> |
| 367 | <?php echo $external_link_icon; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 368 | </a> |
| 369 | <?php if ( is_multisite() && current_user_can( 'jetpack_network_sites_page' ) ) { ?> |
| 370 | <a href="<?php echo esc_url( network_admin_url( 'admin.php?page=jetpack' ) ); ?>" title="<?php esc_html_e( "Manage your network's Jetpack Sites.", 'jetpack' ); ?>" class="jp-footer__menu-item"><?php echo esc_html_x( 'Network Sites', 'Navigation item', 'jetpack' ); ?></a> |
| 371 | <?php } ?> |
| 372 | <?php if ( is_multisite() && current_user_can( 'jetpack_network_settings_page' ) ) { ?> |
| 373 | <a href="<?php echo esc_url( network_admin_url( 'admin.php?page=jetpack-settings' ) ); ?>" title="<?php esc_html_e( "Manage your network's Jetpack Sites.", 'jetpack' ); ?>" class="jp-footer__menu-item"><?php echo esc_html_x( 'Network Settings', 'Navigation item', 'jetpack' ); ?></a> |
| 374 | <?php } ?> |
| 375 | <?php if ( current_user_can( 'manage_options' ) ) { ?> |
| 376 | <a href="<?php echo esc_url( admin_url( 'admin.php?page=jetpack_modules' ) ); ?>" title="<?php esc_html_e( 'Access the full list of Jetpack modules available on your site.', 'jetpack' ); ?>" class="jp-footer__menu-item"><?php echo esc_html_x( 'Modules', 'Navigation item', 'jetpack' ); ?></a> |
| 377 | <a href="<?php echo esc_url( admin_url( 'admin.php?page=jetpack-debugger' ) ); ?>" title="<?php esc_html_e( "Test your site's compatibility with Jetpack.", 'jetpack' ); ?>" class="jp-footer__menu-item"><?php echo esc_html_x( 'Debug', 'Navigation item', 'jetpack' ); ?></a> |
| 378 | <?php } ?> |
| 379 | </div> |
| 380 | <a class="jp-footer__a8c-logo" href="<?php echo esc_url( $jetpack_about_url ); ?>" aria-label="<?php echo esc_attr__( 'An Automattic Airline', 'jetpack' ); ?>"> |
| 381 | <svg role="img" x="0" y="0" viewBox="0 0 935 38.2" enable-background="new 0 0 935 38.2" aria-labelledby="jp-automattic-byline-logo-title" height="7" class="jp-automattic-byline-logo"> |
| 382 | <desc id="jp-automattic-byline-logo-title"> |
| 383 | <?php echo esc_attr__( 'An Automattic Airline', 'jetpack' ); ?> |
| 384 | </desc> |
| 385 | <path d="M317.1 38.2c-12.6 0-20.7-9.1-20.7-18.5v-1.2c0-9.6 8.2-18.5 20.7-18.5 12.6 0 20.8 8.9 20.8 18.5v1.2C337.9 29.1 329.7 38.2 317.1 38.2zM331.2 18.6c0-6.9-5-13-14.1-13s-14 6.1-14 13v0.9c0 6.9 5 13.1 14 13.1s14.1-6.2 14.1-13.1V18.6zM175 36.8l-4.7-8.8h-20.9l-4.5 8.8h-7L157 1.3h5.5L182 36.8H175zM159.7 8.2L152 23.1h15.7L159.7 8.2zM212.4 38.2c-12.7 0-18.7-6.9-18.7-16.2V1.3h6.6v20.9c0 6.6 4.3 10.5 12.5 10.5 8.4 0 11.9-3.9 11.9-10.5V1.3h6.7V22C231.4 30.8 225.8 38.2 212.4 38.2zM268.6 6.8v30h-6.7v-30h-15.5V1.3h37.7v5.5H268.6zM397.3 36.8V8.7l-1.8 3.1 -14.9 25h-3.3l-14.7-25 -1.8-3.1v28.1h-6.5V1.3h9.2l14 24.4 1.7 3 1.7-3 13.9-24.4h9.1v35.5H397.3zM454.4 36.8l-4.7-8.8h-20.9l-4.5 8.8h-7l19.2-35.5h5.5l19.5 35.5H454.4zM439.1 8.2l-7.7 14.9h15.7L439.1 8.2zM488.4 6.8v30h-6.7v-30h-15.5V1.3h37.7v5.5H488.4zM537.3 6.8v30h-6.7v-30h-15.5V1.3h37.7v5.5H537.3zM569.3 36.8V4.6c2.7 0 3.7-1.4 3.7-3.4h2.8v35.5L569.3 36.8 569.3 36.8zM628 11.3c-3.2-2.9-7.9-5.7-14.2-5.7 -9.5 0-14.8 6.5-14.8 13.3v0.7c0 6.7 5.4 13 15.3 13 5.9 0 10.8-2.8 13.9-5.7l4 4.2c-3.9 3.8-10.5 7.1-18.3 7.1 -13.4 0-21.6-8.7-21.6-18.3v-1.2c0-9.6 8.9-18.7 21.9-18.7 7.5 0 14.3 3.1 18 7.1L628 11.3zM321.5 12.4c1.2 0.8 1.5 2.4 0.8 3.6l-6.1 9.4c-0.8 1.2-2.4 1.6-3.6 0.8l0 0c-1.2-0.8-1.5-2.4-0.8-3.6l6.1-9.4C318.7 11.9 320.3 11.6 321.5 12.4L321.5 12.4z"></path><path d="M37.5 36.7l-4.7-8.9H11.7l-4.6 8.9H0L19.4 0.8H25l19.7 35.9H37.5zM22 7.8l-7.8 15.1h15.9L22 7.8zM82.8 36.7l-23.3-24 -2.3-2.5v26.6h-6.7v-36H57l22.6 24 2.3 2.6V0.8h6.7v35.9H82.8z"></path><path d="M719.9 37l-4.8-8.9H694l-4.6 8.9h-7.1l19.5-36h5.6l19.8 36H719.9zM704.4 8l-7.8 15.1h15.9L704.4 8zM733 37V1h6.8v36H733zM781 37c-1.8 0-2.6-2.5-2.9-5.8l-0.2-3.7c-0.2-3.6-1.7-5.1-8.4-5.1h-12.8V37H750V1h19.6c10.8 0 15.7 4.3 15.7 9.9 0 3.9-2 7.7-9 9 7 0.5 8.5 3.7 8.6 7.9l0.1 3c0.1 2.5 0.5 4.3 2.2 6.1V37H781zM778.5 11.8c0-2.6-2.1-5.1-7.9-5.1h-13.8v10.8h14.4c5 0 7.3-2.4 7.3-5.2V11.8zM794.8 37V1h6.8v30.4h28.2V37H794.8zM836.7 37V1h6.8v36H836.7zM886.2 37l-23.4-24.1 -2.3-2.5V37h-6.8V1h6.5l22.7 24.1 2.3 2.6V1h6.8v36H886.2zM902.3 37V1H935v5.6h-26v9.2h20v5.5h-20v10.1h26V37H902.3z"></path> |
| 386 | </svg> |
| 387 | </a> |
| 388 | </div> |
| 389 | </div> |
| 390 | </div> |
| 391 | <?php |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * Should we block the page rendering because the site is in IDC? |
| 396 | * |
| 397 | * @return bool |
| 398 | */ |
| 399 | protected function block_page_rendering_for_idc() { |
| 400 | return Jetpack::is_connection_ready() && Identity_Crisis::validate_sync_error_idc_option() && ! Jetpack_Options::get_option( 'safe_mode_confirmed' ); |
| 401 | } |
| 402 | } |
| 403 |