'IPv4 Address', 'ipv6' => 'IPv6 Address', 'mac' => 'MAC Address', 'arp' => 'ARP Table');
if (!isset($vars['search'])) { $vars['search'] = "ipv4"; }
print_optionbar_start('', '');
echo('Search » ');
unset($sep);
foreach ($sections as $type => $texttype)
{
echo($sep);
if ($vars['search'] == $type)
{
echo(""); }
$sep = ' | ';
}
unset ($sep);
print_optionbar_end('', '');
switch ($vars['search'])
{
case 'ipv4':
case 'ipv6':
case 'mac':
case 'arp':
include('pages/search/'.$vars['search'].'.inc.php');
break;
default:
echo(report_this('Unknown search type '.$vars['search']));
break;
}
?>