details can be updated inline - old forms still to be cleaned up
[plewww.git] / planetlab / includes / plc_minitabs.php
index 2df465f..cac7aad 100644 (file)
@@ -7,16 +7,72 @@ drupal_set_html_head('
 ');
 
 
-function plc_tabs($array) {
-  print '<div id="minitabs_container">';
-  print '<ul id="miniflex">';
-  foreach ($array as $name=>$url) {
-    print "<li class='minitabs'><a href=\"" . $url . "\"title=\"\">" . $name . "</a></li>\n";
+// the expected argument is an (ordered) associative array
+// ( label => todo , ...)
+// label is expected to be the string to display in the menu
+// todo can be either
+// (*) a string : it is then taken to be a URL to move to
+// (*) or an associative array with the following keys
+//     (*) 'method': 'POST' or 'GET' -- default is 'GET'
+//     (*) 'url': where to go
+//     (*) 'values': an associative array of (key,value) pairs to send to the URL; values are strings
+//     (*) 'confirm': a question to display before actually triggering
+//     (*) 'bubble': a longer message displayed when the mouse stays quite for a while on the label
+//     (*) 'image' : the url of an image used instead of the full title
+//     (*) 'height' : used for the image
+
+////////// Notes: limited support for images
+// (*) for some reason, confirmation does not work with image tabs 
+//     (the form gets submitted whatever the confirmation....)
+// (*) you need to tune the image size, which is wrong, as the image should rather be bottom-aligned 
+
+
+function plc_tabs ($array) {
+  print '<div id="minitabs-container">';
+  print '<ul id="minitabs-list">';
+  print "\n";
+  foreach ($array as $label=>$todo) {
+    $tracer="class=minitabs";
+    if ($todo['id']) 
+      $tracer .= " id=".$todo['id'];
+    printf ("<li %s>\n",$tracer);
+    // in case we have a string, rewrite it as an array
+    if (is_string ($todo)) $todo=array('method'=>'GET','url'=>$todo);
+    // set default method
+    if ( ! $todo['method'] ) $todo['method']='GET';
+    // extract var=value settings from url if any
+    $full_url=$todo['url'];
+    $split=split_url($full_url);
+    $url=$split['url'];
+    $url_values=$split['values'];
+
+    // create form
+    printf ('<form name="%s" action="%s" method="%s">',$label,$url,$todo['method']);
+    // set values
+    $values=$todo['values'];
+    if ( ! $values) $values = array();
+    if ($url_values) $values = array_merge($values,$url_values);
+    if ( $values ) foreach ($values as $key=>$value) {
+       printf('<input class="minitabs-hidden" type=hidden name="%s" value="%s" />',$key,$value);
+      }
+    $tracer="class=minitabs-submit";
+    // image and its companions 'height' 
+    if ($todo['image']) {
+      $type='type=image src="' . $todo['image'] . '"';
+      if ($todo['height']) $type.= ' height=' . $todo['height'];
+    } else {
+      $type='type=button value="' . $label . '"';
+    }
+    printf('<span title="%s">',$todo['bubble']);
+    $message="";
+    if ($todo['confirm']) $message=$todo['confirm'] . " ?";
+    printf('<input %s %s onclick=\'miniTab.submit("%s");\' />',$tracer,$type,$message);
+    printf('</span>',$todo['bubble']);
+    printf("</form></li>\n");
   }
   print '</ul>';
   print '</div>';
-  print "\n";
-  print "<br/>\n";
+  print "<p class='plc-minittabs'></p>\n";
 }
 
 ?>