checkpoint
[plewww.git] / planetlab / includes / plc_tables.php
index 7bdcf51..7deb794 100644 (file)
@@ -126,6 +126,21 @@ Hold down the shift key to select multiple columns to sort
 EOF;
 }
 
+////////////////////////////////////////
+function plc_table_title ($text) {
+  print "<h2> $text </h2>\n";
+}
+
+function plc_table_row_start ($id="") {
+  if ( $id) {
+    printf ('<tr id="%s">',$id);
+  } else {
+    print '<tr>';
+  }
+}
+function plc_table_row_end () {
+  print "</tr>\n";
+}
 
 ?>