'); echo('

'.generate_link(nicecase($app['app_type']),array('page'=>'apps','app'=>$app['app_type'])).'

'); $app_devices = dbFetchRows("SELECT * FROM `devices` AS D, `applications` AS A WHERE D.device_id = A.device_id AND A.app_type = ?", array($app['app_type'])); foreach ($app_devices as $app_device) { $graph_type = $graphs[$app['app_type']][0]; $graph_array['type'] = "application_".$app['app_type']."_".$graph_type; $graph_array['id'] = $app_device['app_id']; $graph_array_zoom['type'] = "application_".$app['app_type']."_".$graph_type; $graph_array_zoom['id'] = $app_device['app_id']; $link_array = $graph_array; $link_array['page'] = "device"; $link_array['device'] = $app_device['device_id']; $link_array['tab'] = "apps"; $link_array['app'] = $app['app_type']; unset($link_array['height'], $link_array['width']); $overlib_url = generate_url($link_array); $overlib_link = ''.shorthost($app_device['hostname']).""; if (!empty($app_device['app_instance'])) { $overlib_link .= ''.$app_device['app_instance'].""; $app_device['content_add'] = '('.$app_device['app_instance'].')'; } $overlib_link .= "
"; $overlib_link .= generate_graph_tag($graph_array); $overlib_content = generate_overlib_content($graph_array, $app_device['hostname'] . " - ". $app_device['app_type'] . $app_device['content_add']); echo("
"); echo(overlib_link($overlib_url, $overlib_link, $overlib_content)); echo("
"); } echo(''); } ?>