| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
?> |
| 6 |
<tr> |
| 7 |
<th scope="row">Vary |
| 8 |
<p class="description"><?php _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 |
</th> |
| 10 |
<td> |
| 11 |
<fieldset> |
| 12 |
<legend class="screen-reader-text">Vary</legend> |
| 13 |
<?php |
| 14 |
$vary = get_option('hh_vary', 0); |
| 15 |
foreach ($bools as $k => $v) |
| 16 |
{ |
| 17 |
?><p><label><input type="radio" class="http-header" name="hh_vary" value="<?php echo $k; ?>"<?php checked($vary, $k); ?> /> <?php echo $v; ?></label></p><?php |
| 18 |
} |
| 19 |
?> |
| 20 |
</fieldset> |
| 21 |
</td> |
| 22 |
<td> |
| 23 |
<?php settings_fields( 'http-headers-vary' ); ?> |
| 24 |
<?php do_settings_sections( 'http-headers-vary' ); ?> |
| 25 |
<table> |
| 26 |
<tbody><tr> |
| 27 |
<?php |
| 28 |
$items = array( |
| 29 |
'Accept-Encoding', 'User-Agent', 'Referer', 'Cookie', |
| 30 |
); |
| 31 |
$vary_value = get_option('hh_vary_value'); |
| 32 |
if (!$vary_value) { |
| 33 |
$vary_value = array(); |
| 34 |
} |
| 35 |
foreach ($items as $i => $item) { |
| 36 |
if ($i % 2 === 0) { |
| 37 |
?></tr><tr><?php |
| 38 |
} |
| 39 |
?><td><label><input type="checkbox" class="http-header-value" name="hh_vary_value[<?php echo $item; ?>]" value="1"<?php echo !array_key_exists($item, $vary_value) ? NULL : ' checked'; ?><?php echo $vary == 1 ? NULL : ' readonly'; ?> /> <?php echo $item; ?></label></td><?php |
| 40 |
} |
| 41 |
?> |
| 42 |
</tr></tbody></table> |
| 43 |
</td> |
| 44 |
</tr> |