PluginProbe
HTTP Headers / 1.15.0
HTTP Headers v1.15.0
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 / access-control-allow-headers.php

access-control-allow-headers.php in HTTP Headers 1.15.0, at views/access-control-allow-headers.php

75 lines 3.1 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">Access-Control-Allow-Headers
8 <p class="description"><?php _e('The Access-Control-Allow-Headers header is returned by the server in a response to a preflight request and informs the browser about the HTTP headers that can be used in the actual request.', 'http-headers'); ?></p>
9 </th>
10 <td>
11 <fieldset>
12 <legend class="screen-reader-text">Access-Control-Allow-Credentials</legend>
13 <?php
14 $access_control_allow_headers = get_option('hh_access_control_allow_headers', 0);
15 foreach ($bools as $k => $v)
16 {
17 ?><p><label><input type="radio" class="http-header" name="hh_access_control_allow_headers" value="<?php echo $k; ?>"<?php checked($access_control_allow_headers, $k); ?> /> <?php echo $v; ?></label></p><?php
18 }
19 ?>
20 </fieldset>
21 </td>
22 <td>
23 <?php settings_fields( 'http-headers-acah' ); ?>
24 <?php do_settings_sections( 'http-headers-acah' ); ?>
25 <table><tbody><tr>
26 <?php
27 $access_control_allow_headers_value = get_option('hh_access_control_allow_headers_value');
28 if (!$access_control_allow_headers_value)
29 {
30 $access_control_allow_headers_value = array();
31 }
32 $i = 0;
33 array_unshift($headers_list, '*');
34 foreach ($headers_list as $item) {
35 if (in_array($item, $cors_safe_request_headers)) {
36 continue;
37 }
38 if ($i % 3 === 0) {
39 ?></tr><tr><?php
40 }
41 ?><td><label><input type="checkbox" class="http-header-value" name="hh_access_control_allow_headers_value[<?php echo $item; ?>]" value="1"<?php echo !array_key_exists($item, $access_control_allow_headers_value) ? NULL : ' checked'; ?><?php echo $access_control_allow_headers == 1 ? NULL : ' readonly'; ?> /> <?php echo $item; ?></label></td><?php
42 $i += 1;
43 }
44 ?>
45 </tr></tbody></table>
46 <table><tbody>
47 <?php
48 $access_control_allow_headers_custom = get_option('hh_access_control_allow_headers_custom');
49 if (is_array($access_control_allow_headers_custom))
50 {
51 foreach ($access_control_allow_headers_custom as $header)
52 {
53 ?>
54 <tr>
55 <td><input type="text" name="hh_access_control_allow_headers_custom[]"
56 class="http-header-value" size="35"
57 value="<?php echo esc_attr($header); ?>"<?php echo $access_control_allow_headers == 1 ? NULL : ' readonly'; ?> />
58 </td>
59 <td>
60 <button type="button" class="button button-small hh-btn-delete-ac"
61 title="<?php esc_attr_e('Delete', 'http-headers'); ?>">x</button>
62 </td>
63 </tr>
64 <?php
65 }
66 }
67 ?>
68 <tr>
69 <td colspan="2">
70 <button type="button" class="button hh-btn-add-ac" data-name="hh_access_control_allow_headers_custom[]">+ <?php _e('Add header', 'http-headers'); ?></button>
71 </td>
72 </tr>
73 </tbody></table>
74 </td>
75 </tr>