PluginProbe
HTTP Headers / 1.10.2
HTTP Headers v1.10.2
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 / header.php

header.php in HTTP Headers 1.10.2, at views/header.php

24 lines 549 B
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 include dirname(__FILE__) . '/includes/config.inc.php';
6 include dirname(__FILE__) . '/includes/breadcrumbs.inc.php';
7 ?>
8
9 <section class="hh-panel">
10 <form method="post" action="options.php">
11 <table class="form-table hh-table">
12 <tbody>
13 <?php
14 $header_file = sprintf('%s/%s.php', dirname(__FILE__), basename($_GET['header']));
15 if (is_file($header_file))
16 {
17 include $header_file;
18 }
19 ?>
20 </tbody>
21 </table>
22 <?php submit_button(); ?>
23 </form>
24 </section>