$item) { if ($_GET['category'] != $item[2]) { continue; } $key = $item[1]; $option = get_option($key, 0); $isOn = (int) $option === 1; $value = NULL; if ($isOn) { $value = get_option($key .'_value'); if (is_string($value)) { $value = esc_html($value); } switch ($key) { case 'hh_age': $value = (int) $value; break; case 'hh_p3p': if (!empty($value)) { $value = sprintf('CP="%s"', join(' ', array_keys($value))); } break; case 'hh_x_xxs_protection': if ($value == '1; report=') { $value .= esc_html(get_option('hh_x_xxs_protection_uri')); } break; case 'hh_x_powered_by': if (get_option('hh_x_powered_by_option') == 'unset') { $value = '[Unset]'; } break; case 'hh_x_frame_options': $value = strtoupper($value); if ($value == 'ALLOW-FROM') { $value .= ' ' . esc_html(get_option('hh_x_frame_options_domain')); } break; case 'hh_strict_transport_security': $tmp = array(); $hh_strict_transport_security_max_age = get_option('hh_strict_transport_security_max_age'); if ($hh_strict_transport_security_max_age !== false) { $tmp[] = sprintf('max-age=%u', $hh_strict_transport_security_max_age); if (get_option('hh_strict_transport_security_sub_domains')) { $tmp[] = 'includeSubDomains'; } if (get_option('hh_strict_transport_security_preload')) { $tmp[] = 'preload'; } } else { $tmp = array(get_option('hh_strict_transport_security_value')); } if (!empty($tmp)) { $value = join('; ', $tmp); } break; case 'hh_timing_allow_origin': if ($value == 'origin') { $value = esc_html(get_option('hh_timing_allow_origin_url')); } break; case 'hh_access_control_allow_origin': if ($value == 'origin') { $value = join('
', array_map('esc_html', get_option('hh_access_control_allow_origin_url', array()))); } break; case 'hh_access_control_expose_headers': case 'hh_access_control_allow_headers': case 'hh_access_control_allow_methods': $value = join(', ', array_keys($value)); break; case 'hh_content_security_policy': $value = build_csp_value($value, true); if (get_option('hh_content_security_policy_report_only')) { $item[0] .= '-Report-Only'; } break; case 'hh_content_encoding': $value = !$value ? null : join(', ', array_keys($value)); $ext = get_option('hh_content_encoding_ext'); if (!empty($ext)) { $ext = join(', ', array_keys($ext)); $value .= (!empty($value) ? '
' : null) . $ext; } $module = get_option('hh_content_encoding_module'); switch ($module) { case 'brotli_deflate': $enc = 'br, gzip'; break; case 'brotli': $enc = 'br'; break; case 'deflate': default: $enc = 'gzip'; break; } $value = !empty($value) ? sprintf('%s (%s)', $enc, $value) : $enc; break; case 'hh_vary': $value = !$value ? null : join(', ', array_keys($value)); break; case 'hh_www_authenticate': $value = esc_html(get_option('hh_www_authenticate_type')); break; case 'hh_cache_control': $tmp = array(); foreach ($value as $k => $v) { if (in_array($k, array('max-age', 's-maxage', 'stale-while-revalidate', 'stale-if-error'))) { if (strlen($v) > 0) { $tmp[] = sprintf("%s=%u", $k, $v); } } else { $tmp[] = $k; } } $value = join(', ', $tmp); break; case 'hh_expires': $tmp = array(); $types = get_option('hh_expires_type', array()); foreach ($types as $type => $whatever) { list($base, $period, $suffix) = explode('_', $value[$type]); if (in_array($base, array('access', 'modification'))) { $tmp[] = $type != 'default' ? sprintf('%s = "%s plus %u %s"', $type, $base, $period, $suffix) : sprintf('default = "%s plus %u %s"', $base, $period, $suffix); } elseif ($base == 'invalid') { $tmp[] = $type != 'default' ? sprintf('%s = A0', $type) : sprintf('default = A0'); } } $value = join('
', $tmp); break; case 'hh_cookie_security': if (is_array($value)) { if (isset($value['SameSite']) && !is_samesite_supported()) { unset($value['SameSite']); } } $value = is_array($value) && !empty($value) ? '✔ ' . join(' ✔ ', array_keys($value)) : NULL; break; case 'hh_expect_ct': $tmp = array(); $tmp[] = sprintf('max-age=%u', get_option('hh_expect_ct_max_age')); if (get_option('hh_expect_ct_enforce') == 1) { $tmp[] = 'enforce'; } $tmp[] = sprintf('report-uri="%s"', esc_html(get_option('hh_expect_ct_report_uri'))); $value = join(', ', $tmp); break; case 'hh_custom_headers': $_names = array($item[0]); $_values = array(' '); foreach ($value['name'] as $key => $name) { if (!empty($name) && !empty($value['value'][$key])) { $_names[] = '

    '.$name.'

'; $_values[] = '

'.esc_html($value['value'][$key]).'

'; } } $item[0] = join('', $_names); $value = join('', $_values); break; case 'hh_report_to': $value = esc_html(get_http_header('report_to')); break; case 'hh_nel': $value = esc_html(get_http_header('nel')); break; case 'hh_feature_policy': $value = esc_html(get_http_header('feature_policy')); break; case 'hh_permissions_policy': $value = esc_html(get_http_header('permissions_policy')); break; case 'hh_x_robots_tag': $value = esc_html(get_http_header('x_robots_tag')); break; case 'hh_clear_site_data': $value = '"' . join('", "', array_keys($value)) . '"'; break; case 'hh_content_type': $tmp = array(); foreach ($value as $key => $val) { $tmp[] = sprintf(".%s => %s", $key, $val); } $value = join("
", $tmp); break; default: $value = !is_array($value) ? $value : join(', ', $value); } } $status = $isOn ? __('On', 'http-headers') : __('Off', 'http-headers'); ?> >