# http-headers/1.10.3/views/includes/breadcrumbs.inc.php

HTTP Headers, version 1.10.3. 23 lines.

- Page: https://pluginprobe.com/plugins/http-headers/1.10.3/code/views/includes/breadcrumbs.inc.php
- Raw: https://pluginprobe.com/plugins/http-headers/1.10.3/raw/views/includes/breadcrumbs.inc.php
- Modified: 2018-01-04T21:33:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/http-headers/1.10.3/code/views/includes/breadcrumbs.inc.php#L10-L20`.

```php
<?php
if (!defined('ABSPATH')) {
    exit;
}
?>
<ul class="hh-breadcrumbs">
	<li><a href="<?php echo get_admin_url(); ?>options-general.php?page=http-headers"><?php _e('Dashboard', 'http-headers'); ?></a></li>
	<?php 
	if (isset($_GET['category']))
	{
		?><li><?php echo @$categories[$_GET['category']]; ?></li><?php
	} elseif (isset($_GET['header'])) {
		?><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
		?><li><?php echo @$headers[$_GET['header']][0]; ?></li><?php
	} elseif (isset($_GET['tab']) && $_GET['tab'] == 'advanced') {
		?><li><?php _e('Advanced settings', 'http-headers'); ?></li><?php
	} elseif (isset($_GET['tab']) && $_GET['tab'] == 'manual') {
	    ?><li><?php _e('Manual setup', 'http-headers'); ?></li><?php
	} elseif (isset($_GET['tab']) && $_GET['tab'] == 'inspect') {
		?><li><?php _e('Inspect headers', 'http-headers'); ?></li><?php
	}
	?>
</ul>
```
