GetNodeGroups( array($nodegroup_id)); if (empty($nodegroups)) { drupal_set_message ("NodeGroup " . $nodegroup_id . " not found"); return; } $nodegroup=$nodegroups[0]; $node_ids=$nodegroup['node_ids']; $tagname=$nodegroup['tagname']; # fetch corresponding nodes $node_columns = array("hostname","node_id"); $nodes = $api->GetNodes( $node_ids, $node_columns); $tabs ["All nodegroups"] = array ('url'=>l_nodegroups(), 'bubble'=>'All nodegroups'); $tabs ["All tags"] = array ('url'=>l_tags(), 'bubble'=>'All tags'); $tabs ["Local nodes"] = array ('url'=>l_nodes_peer('local'), 'bubble'=>'All local nodes'); drupal_set_title("Details for node group " . $nodegroup['groupname']); plc_tabs($tabs); plc_details_start(); plc_details_line ("Node group name",$nodegroup['groupname']); plc_details_line ("Based on tag",href(l_tag($nodegroup['tag_type_id']),$tagname)); plc_details_line("Matching value",$nodegroup['value']); plc_details_line("# nodes",count($nodegroup['node_ids'])); plc_details_end(); // xxx : add & delete buttons would make sense here too plc_section("Nodes"); $headers["Hostname"]="string"; $table = new PlcTable("nodegroup_nodes",$headers,0,array('search_width'=>15)); $table->start(); if ($nodes) foreach ($nodes as $node) { $table->row_start (); $table->cell ( href (l_node ($node['node_id']),$node['hostname'])); $table->row_end (); } $table->end (); // Print footer include 'plc_footer.php'; ?>