| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
?> |
| 6 |
<tr> |
| 7 |
<th scope="row">Cross-Origin-Resource-Policy |
| 8 |
<p class="description"><?php _e('The HTTP Cross-Origin-Resource-Policy response header conveys a desire that the browser blocks no-cors cross-origin/cross-site requests to the given resource.', 'http-headers'); ?></p> |
| 9 |
</th> |
| 10 |
<td> |
| 11 |
<fieldset> |
| 12 |
<legend class="screen-reader-text">Cross-Origin-Resource-Policy</legend> |
| 13 |
<?php |
| 14 |
$cross_origin_resource_policy = get_option('hh_cross_origin_resource_policy', 0); |
| 15 |
foreach ($bools as $k => $v) |
| 16 |
{ |
| 17 |
?><p><label><input type="radio" class="http-header" name="hh_cross_origin_resource_policy" value="<?php echo $k; ?>"<?php checked($cross_origin_resource_policy, $k); ?> /> <?php echo $v; ?></label></p><?php |
| 18 |
} |
| 19 |
?> |
| 20 |
</fieldset> |
| 21 |
</td> |
| 22 |
<td> |
| 23 |
<?php settings_fields( 'http-headers-corp' ); ?> |
| 24 |
<?php do_settings_sections( 'http-headers-corp' ); ?> |
| 25 |
<select name="hh_cross_origin_resource_policy_value" class="http-header-value"<?php echo $cross_origin_resource_policy == 1 ? NULL : ' readonly'; ?>> |
| 26 |
<?php |
| 27 |
$items = array('same-site', 'same-origin'); |
| 28 |
$cross_origin_resource_policy_value = get_option('hh_cross_origin_resource_policy_value'); |
| 29 |
foreach ($items as $item) { |
| 30 |
?><option value="<?php echo $item; ?>"<?php selected($cross_origin_resource_policy_value, $item); ?>><?php echo $item; ?></option><?php |
| 31 |
} |
| 32 |
?> |
| 33 |
</select> |
| 34 |
</td> |
| 35 |
</tr> |