"" . print_image ("images/bricks.png", true, array ("title" => __('Agents'))) . "", 'active' => $searchTab == "agents"); }else { $agents_tab = ''; } if($searchUsers) { $users_tab = array('text' => "" . print_image ("images/group.png", true, array ("title" => __('Users'))) . "", 'active' => $searchTab == "users"); }else { $users_tab = ''; } if($searchAlerts) { $alerts_tab = array('text' => "" . print_image ("images/god2.png", true, array ("title" => __('Alerts'))) . "", 'active' => $searchTab == "alerts"); }else { $alerts_tab = ''; } if($searchGraphs) { $graphs_tab = array('text' => "" . print_image ("images/chart_curve.png", true, array ("title" => __('Graphs'))) . "", 'active' => $searchTab == "graphs"); }else { $graphs_tab = ''; } if($searchReports) { $reports_tab = array('text' => "" . print_image ("images/reporting.png", true, array ("title" => __('Reports'))) . "", 'active' => $searchTab == "reports"); }else { $reports_tab = ''; } if($searchMaps) { $maps_tab = array('text' => "" . print_image ("images/camera.png", true, array ("title" => __('Maps'))) . "", 'active' => $searchTab == "maps"); }else { $maps_tab = ''; } $onheader = array('agents' => $agents_tab, 'users' => $users_tab, 'alerts' => $alerts_tab, 'graphs' => $graphs_tab, 'reports' => $reports_tab, 'maps' => $maps_tab); print_page_header (__("Search").": \"".$config['search_keywords']."\"", "images/zoom.png", false, "", false, $onheader); switch ($searchTab) { case 'agents': require_once('search_agents.php'); break; case 'users': require_once('search_users.php'); break; case 'alerts': require_once('search_alerts.php'); break; case 'graphs': require_once('search_graphs.php'); break; case 'reports': require_once('search_reports.php'); break; case 'maps': require_once('search_maps.php'); break; } ?>