mirror of
https://github.com/stylersnico/librenms.git
synced 2026-08-01 00:24:21 +02:00
Fix coding style part 2
This commit is contained in:
+31
-24
@@ -1,43 +1,50 @@
|
||||
<?php
|
||||
|
||||
$pagetitle[] = "Search";
|
||||
$pagetitle[] = 'Search';
|
||||
|
||||
$sections = array('ipv4' => 'IPv4 Address', 'ipv6' => 'IPv6 Address', 'mac' => 'MAC Address', 'arp' => 'ARP Table');
|
||||
$sections = array(
|
||||
'ipv4' => 'IPv4 Address',
|
||||
'ipv6' => 'IPv6 Address',
|
||||
'mac' => 'MAC Address',
|
||||
'arp' => 'ARP Table',
|
||||
);
|
||||
|
||||
if( dbFetchCell("SELECT 1 from `packages` LIMIT 1") ) {
|
||||
$sections['packages'] = 'Packages';
|
||||
if (dbFetchCell('SELECT 1 from `packages` LIMIT 1')) {
|
||||
$sections['packages'] = 'Packages';
|
||||
}
|
||||
|
||||
if (!isset($vars['search'])) { $vars['search'] = "ipv4"; }
|
||||
if (!isset($vars['search'])) {
|
||||
$vars['search'] = 'ipv4';
|
||||
}
|
||||
|
||||
print_optionbar_start('', '');
|
||||
|
||||
echo('<span style="font-weight: bold;">Search</span> » ');
|
||||
echo '<span style="font-weight: bold;">Search</span> » ';
|
||||
|
||||
unset($sep);
|
||||
foreach ($sections as $type => $texttype)
|
||||
{
|
||||
echo($sep);
|
||||
if ($vars['search'] == $type)
|
||||
{
|
||||
echo("<span class='pagemenu-selected'>");
|
||||
}
|
||||
foreach ($sections as $type => $texttype) {
|
||||
echo $sep;
|
||||
if ($vars['search'] == $type) {
|
||||
echo "<span class='pagemenu-selected'>";
|
||||
}
|
||||
|
||||
# echo('<a href="search/' . $type . ($_GET['optb'] ? '/' . $_GET['optb'] : ''). '/">' . $texttype .'</a>');
|
||||
echo(generate_link($texttype, array('page'=>'search','search'=>$type)));
|
||||
// echo('<a href="search/' . $type . ($_GET['optb'] ? '/' . $_GET['optb'] : ''). '/">' . $texttype .'</a>');
|
||||
echo generate_link($texttype, array('page' => 'search', 'search' => $type));
|
||||
|
||||
if ($vars['search'] == $type) { echo("</span>"); }
|
||||
if ($vars['search'] == $type) {
|
||||
echo '</span>';
|
||||
}
|
||||
|
||||
$sep = ' | ';
|
||||
$sep = ' | ';
|
||||
}
|
||||
unset ($sep);
|
||||
|
||||
unset($sep);
|
||||
|
||||
print_optionbar_end('', '');
|
||||
|
||||
if( file_exists('pages/search/'.$vars['search'].'.inc.php') ) {
|
||||
include('pages/search/'.$vars['search'].'.inc.php');
|
||||
} else {
|
||||
echo(report_this('Unknown search type '.$vars['search']));
|
||||
if (file_exists('pages/search/'.$vars['search'].'.inc.php')) {
|
||||
include 'pages/search/'.$vars['search'].'.inc.php';
|
||||
}
|
||||
else {
|
||||
echo report_this('Unknown search type '.$vars['search']);
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user