PluginProbe
HTTP Headers / 1.14.0
HTTP Headers v1.14.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 / includes / breadcrumbs.inc.php

breadcrumbs.inc.php in HTTP Headers 1.14.0, at views/includes/breadcrumbs.inc.php

23 lines 1.0 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 <ul class="hh-breadcrumbs">
7 <li><a href="<?php echo get_admin_url(); ?>options-general.php?page=http-headers"><?php _e('Dashboard', 'http-headers'); ?></a></li>
8 <?php
9 if (isset($_GET['category']))
10 {
11 ?><li><?php echo @$categories[$_GET['category']]; ?></li><?php
12 } elseif (isset($_GET['header'])) {
13 ?><li><a href="<?php echo get_admin_url(); ?>options-general.php?page=http-headers&amp;category=<?php echo htmlspecialchars($headers[$_GET['header']][2]); ?>"><?php echo @$categories[$headers[$_GET['header']][2]]; ?></a></li><?php
14 ?><li><?php echo @$headers[$_GET['header']][0]; ?></li><?php
15 } elseif (isset($_GET['tab']) && $_GET['tab'] == 'advanced') {
16 ?><li><?php _e('Advanced settings', 'http-headers'); ?></li><?php
17 } elseif (isset($_GET['tab']) && $_GET['tab'] == 'manual') {
18 ?><li><?php _e('Manual setup', 'http-headers'); ?></li><?php
19 } elseif (isset($_GET['tab']) && $_GET['tab'] == 'inspect') {
20 ?><li><?php _e('Inspect headers', 'http-headers'); ?></li><?php
21 }
22 ?>
23 </ul>