| 1 |
<?php |
| 2 |
|
| 3 |
if (!defined('ABSPATH')) { exit; } |
| 4 |
|
| 5 |
include(GDSIH_PATH.'forms/shared/top.php'); |
| 6 |
|
| 7 |
?> |
| 8 |
|
| 9 |
<div class="d4p-content-right d4p-content-full"> |
| 10 |
<form method="get" action=""> |
| 11 |
<input type="hidden" name="page" value="gd-security-toolbox-xxp-reports" /> |
| 12 |
<input type="hidden" value="getback" name="gdsih_handler" /> |
| 13 |
|
| 14 |
<?php |
| 15 |
|
| 16 |
require_once(GDSIH_PATH.'core/grids/xxp.php'); |
| 17 |
|
| 18 |
$_grid = new gdsih_xxp_report_grid(); |
| 19 |
$_grid->prepare_items(); |
| 20 |
|
| 21 |
$_grid->search_box(__("Search", "gd-security-headers"), 's'); |
| 22 |
$_grid->display(); |
| 23 |
|
| 24 |
?> |
| 25 |
</form> |
| 26 |
</div> |
| 27 |
|
| 28 |
<?php |
| 29 |
|
| 30 |
include(GDSIH_PATH.'forms/shared/bottom.php'); |
| 31 |
include(GDSIH_PATH.'forms/shared/dialogs.php'); |
| 32 |
|