PluginProbe
HTTP Headers / trunk
HTTP Headers vtrunk
1.19.5 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.12.0 1.12.1 1.12.2 1.13.0 1.13.1 1.13.2 1.13.3 1.13.4 1.14.0 1.14.1 1.14.2 1.15.0 All 60 releases
http-headers / views / vary.php

vary.php in HTTP Headers trunk, at views/vary.php

51 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if (!defined('ABSPATH')) {
3 exit;
4 }
5 ?>
6 <tr>
7 <th scope="row">Vary
8 <p class="description"><?php esc_html_e('The Vary HTTP response header determines how to match future request headers to decide whether a cached response can be used rather than requesting a fresh one from the origin server. It is used by the server to indicate which headers it used when selecting a representation of a resource in a content negotiation algorithm.', 'http-headers'); ?></p>
9 <hr>
10 <p class="description"><?php esc_html_e('Read more at', 'http-headers'); ?>
11 <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Vary"><?php esc_html_e('MDN Web Docs', 'http-headers'); ?></a>
12 </p>
13 </th>
14 <td>
15 <fieldset>
16 <legend class="screen-reader-text">Vary</legend>
17 <?php
18 $http_headers_vary = get_option('hh_vary', 0);
19 foreach ($http_headers_bools as $http_headers_k => $http_headers_v)
20 {
21 ?><p><label><input type="radio" class="http-header" name="hh_vary" value="<?php echo esc_attr($http_headers_k); ?>"<?php checked($http_headers_vary, $http_headers_k); ?> /> <?php echo esc_html($http_headers_v); ?></label></p><?php
22 }
23 ?>
24 </fieldset>
25 </td>
26 <td>
27 <?php settings_fields( 'http-headers-vary' ); ?>
28 <?php do_settings_sections( 'http-headers-vary' ); ?>
29 <table>
30 <tbody>
31 <tr>
32 <td>
33 <?php
34 $http_headers_items = array(
35 '*', 'Accept-Encoding', 'User-Agent', 'Referer', 'Cookie',
36 );
37 $http_headers_vary_value = get_option('hh_vary_value');
38 if (!$http_headers_vary_value) {
39 $http_headers_vary_value = array();
40 }
41 foreach ($http_headers_items as $http_headers_item)
42 {
43 ?><p><label><input type="checkbox" class="http-header-value" name="hh_vary_value[<?php echo esc_attr($http_headers_item); ?>]" value="1"<?php echo !array_key_exists($http_headers_item, $http_headers_vary_value) ? NULL : ' checked'; ?><?php echo $http_headers_vary == 1 ? NULL : ' readonly'; ?> /> <?php echo esc_html($http_headers_item); ?></label></p><?php
44 }
45 ?>
46 </td>
47 </tr>
48 </tbody>
49 </table>
50 </td>
51 </tr>