',
				'',
				'',
				''
			),
			array(
				'span' => array(),
				'sup'  => array(),
			)
		);
		?>
	
	
		
	
	 'general',
					'text' => esc_html__( 'General', 'w3-total-cache' ),
				),
				array(
					'id'   => 'page_cache',
					'text' => esc_html__( 'Page Cache', 'w3-total-cache' ),
				),
				array(
					'id'   => 'minify',
					'text' => esc_html__( 'Minify', 'w3-total-cache' ),
				),
				array(
					'id'   => 'system_opcache',
					'text' => esc_html__( 'Opcode Cache', 'w3-total-cache' ),
				),
				array(
					'id'   => 'database_cache',
					'text' => esc_html__( 'Database Cache', 'w3-total-cache' ),
				),
				array(
					'id'   => 'object_cache',
					'text' => esc_html__( 'Object Cache', 'w3-total-cache' ),
				),
			);
			if ( Util_Environment::is_w3tc_pro( $config ) ) {
				$anchors[] = array(
					'id'   => 'fragmentcache',
					'text' => esc_html__( 'Fragment Cache', 'w3-total-cache' ),
				);
			}
			$anchors = array_merge(
				$anchors,
				array(
					array(
						'id'   => 'browser_cache',
						'text' => esc_html__( 'Browser Cache', 'w3-total-cache' ),
					),
					array(
						'id'   => 'cdn',
						'text' => wp_kses(
							sprintf(
								// translators: 1 opening HTML abbr tag, 2 closing HTML abbr tag.
								__(
									'%1$sCDN%2$s',
									'w3-total-cache'
								),
								'
',
								''
							),
							array(
								'abbr' => array(
									'title' => array(),
								),
							)
						),
					),
					array(
						'id'   => 'reverse_proxy',
						'text' => esc_html__( 'Reverse Proxy', 'w3-total-cache' ),
					),
				)
			);
			if ( Util_Environment::is_w3tc_pro() ) {
				$anchors[] = array(
					'id'   => 'amazon_sns',
					'text' => esc_html__( 'Message Bus', 'w3-total-cache' ),
				);
			}
			$anchors[] = array(
				'id'   => 'monitoring',
				'text' => esc_html__( 'Monitoring', 'w3-total-cache' ),
			);
			if ( $licensing_visible ) {
				array(
					'id'   => 'licensing',
					'text' => esc_html__( 'Licensing', 'w3-total-cache' ),
				);
			}
			$link_attrs = array_merge(
				$anchors,
				$custom_areas,
				array(
					array(
						'id'   => 'google_page_speed',
						'text' => __( 'Google PageSpeed', 'w3-total-cache' )
					),
					array(
						'id'   => 'miscellaneous',
						'text' => esc_html__( 'Miscellaneous', 'w3-total-cache' ),
					),
					array(
						'id'   => 'debug',
						'text' => esc_html__( 'Debug', 'w3-total-cache' ),
					),
					array(
						'id'   => 'settings',
						'text' => esc_html__( 'Import / Export Settings', 'w3-total-cache' ),
					),
				)
			);
			$links = array();
			foreach ( $link_attrs as $link ) {
				$links[] = "
{$link['text']}";
			}
			$links[] = '
Compatibility Test';
			?>