split in two
[plewww.git] / planetlab / tags / nodegroup.php
index 7cb1aab..30a6d51 100644 (file)
@@ -15,11 +15,10 @@ include 'plc_header.php';
 
 // Common functions
 require_once 'plc_functions.php';
-require_once 'plc_minitabs.php';
-require_once 'plc_tables.php';
-require_once 'plc_details.php';
-//require_once 'plc_forms.php';
-//require_once 'plc_peers.php';
+require_once 'linetabs.php';
+require_once 'table.php';
+require_once 'details.php';
+require_once 'toggle.php';
 
 // -------------------- 
 // recognized URL arguments
@@ -44,36 +43,42 @@ $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');
+$tabs = array();
+
+$tabs []= tab_tags();
+$tabs []= tab_nodegroups();
+$tabs []= tab_nodes_local();
 
 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();
+$details=new PlcDetails(false);
+$details->start();
+$details->th_td ("Node group name",$nodegroup['groupname']);
+$details->th_td ("Based on tag",href(l_tag($nodegroup['tag_type_id']),$tagname));
+$details->th_td("Matching value",$nodegroup['value']);
+$details->th_td("# nodes",count($nodegroup['node_ids']));
+$details->end();
 
 // xxx : add & delete buttons would make sense here too
-plc_section("Nodes");
+$toggle=new PlcToggle('nodes',"Nodes",array('trigger-tagname'=>'h2'));
+$toggle=>start();
 
 $headers["Hostname"]="string";
 
-plc_table_start("nodegroup_nodes",$headers,0,array('search_width'=>15));
+$table = new PlcTable("nodegroup_nodes",$headers,0,array('search_width'=>15));
+$table->start();
 if ($nodes) foreach ($nodes as $node) {
-  plc_table_row_start ();
-  plc_table_cell ( href (l_node ($node['node_id']),$node['hostname']));
-  plc_table_row_end ();
+  $table->row_start ();
+  $table->cell ( href (l_node ($node['node_id']),$node['hostname']));
+  $table->row_end ();
 }
 
-plc_table_end ("nodegroup_nodes");
+$table->end ();
+$toggle->end();
+
+//plc_tabs ($tabs,"bottom");
+
 // Print footer
 include 'plc_footer.php';