slice creation page - sites sorted and correctly show current site - layout reviewed
[plewww.git] / plekit / php / linetabs.php
index 3e89eab..ce5e808 100644 (file)
@@ -45,13 +45,16 @@ drupal_set_html_head('
 //     (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 plekit_linetabs ($array, $id=NULL) {
+function plekit_linetabs ($tabs, $id=NULL) {
+  // do not output anything if $tabs has no entry (unpleasant rendering)
+  if (empty ($tabs)) return;
+  $active_line_tab=$_GET['active_line_tab'];
   // need id to pass to the onclick function attached to the input buttons
-  $id="minitabs";
+  $id="linetabs";
   if (! $id) $id .= '-' + $id;
-  print "<div id='$id' class='minitabs'>";
+  print "<div id='$id' class='linetabs'>";
   print "<ul>";
-  foreach ($array as $label=>$todo) {
+  foreach ($tabs as $label=>$todo) {
     // in case we have a simple string, rewrite it as an array
     if (is_string ($todo)) $todo=array('method'=>'GET','url'=>$todo);
     // the 'label' key, if set in the hash, supersedes key
@@ -68,34 +71,41 @@ function plekit_linetabs ($array, $id=NULL) {
     $url_values=$split['values'];
 
     // create form
-    $method=$todo['method'];
-    print "<form name='$label' action='$url' method='$method'>";
+    $method=strtolower($todo['method']);
+    print "<form action='$url' method='$method'><fieldset>";
     // 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) {
-       print "<input type=hidden name='$key' value='$value' />";
-      }
-    $tracer="class=minitabs-submit";
+      if ($key != "active_line_tab")
+        print "<input type='hidden' name='$key' value='$value' />";
+    }
+    print "<input type='hidden' name='active_line_tab' value='$label' />";
+    if ($label == $active_line_tab) $tracer = "class='linetabs-submit active'";
+    else $tracer="class='linetabs-submit'";
     // image and its companions 'height' 
     if ($todo['image']) {
-      $type='type=image src="' . $todo['image'] . '"';
-      if ($todo['height']) $type.= ' height=' . $todo['height'];
+      $what=$todo['image'];
+      $type="type='image' src='$what'";
+      if ($todo['height']) {
+       $what=$todo['height'];
+       $type .= " height='$what'";
+      }
     } else {
-      $type='type=button value="' . $label . '"';
+      $type="type='button' value='$label'";
     }
     $bubble=$todo['bubble'];
     print "<span title='$bubble'>";
     $message="";
     if ($todo['confirm']) $message=$todo['confirm'] . " ?";
-    print "<input $tracer $type onclick='minitabs_namespace.submit(\"$id\",\"$message\")' />";
+    print "<input $tracer $type onclick='linetabs_namespace.submit(\"$id\",\"$message\")' />";
     print "</span>";
-    print "</form></li>\n";
+    print "</fieldset></form></li>\n";
   }
   print '</ul>';
   print '</div>';
-  print "<p class='plc-minittabs'></p>\n";
+  print "<p class='linetabs'></p>\n";
 }
 
 ?>