PluginProbe
GD Security Headers / trunk
GD Security Headers vtrunk
trunk 1.0 1.1 1.1.1 1.2 1.3 1.4 1.5 1.6 1.6.1 1.7 1.7.1 1.8 1.9
gd-security-headers / forms / csp-reports.php

csp-reports.php in GD Security Headers trunk, at forms/csp-reports.php

34 lines 757 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 include( GDSIH_PATH . 'forms/shared/top.php' );
8
9 ?>
10
11 <div class="d4p-content-right d4p-content-full">
12 <form method="get" action="">
13 <input type="hidden" name="page" value="gd-security-headers-csp-reports"/>
14 <input type="hidden" value="getback" name="gdsih_handler"/>
15
16 <?php
17
18 require_once( GDSIH_PATH . 'core/grids/csp.php' );
19
20 $_grid = new gdsih_csp_report_grid();
21 $_grid->prepare_items();
22
23 $_grid->search_box( __( 'Search', 'gd-security-headers' ), 's' );
24 $_grid->display();
25
26 ?>
27 </form>
28 </div>
29
30 <?php
31
32 include( GDSIH_PATH . 'forms/shared/bottom.php' );
33 include( GDSIH_PATH . 'forms/shared/dialogs.php' );
34