Code

Updated Tab looking
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 1 Mar 2010 09:30:19 +0000 (09:30 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 1 Mar 2010 09:30:19 +0000 (09:30 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15787 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_pluglist.inc
gosa-core/include/class_tabs.inc

index 8c0bfe39b09e537390dcd74a9c7ba263b2a6a838..b0ce5a2cb548a372e1085a617171a6a29e776e32 100644 (file)
@@ -40,14 +40,6 @@ class pluglist
   {
     $this->ui= &$ui;
     $this->config= &$config;
-
-    // Reserve a special ACL will allows us to display plugins/addons whenever a user 
-    //  is able to login into gosa. E.g. some kind of welcome page. 
-    $this->info['all']= array();
-    $this->info['all']['plProvidedAcls']= array();
-    $this->info['all']['plDescription']= _("All objects in this category");
-    $this->info['all']['plSelfModify']= FALSE;
-    
     $this->loadPluginList();
   }
 
@@ -55,15 +47,6 @@ class pluglist
   {
     $this->pluginList = array();
 
-    // Detect installed plugins and their configuration, to be able to restrict access later.
-    $classes= get_declared_classes();
-    foreach ($classes as $cname){
-      $cmethods = get_class_methods($cname);
-      if (in_array_ics('plInfo',$cmethods)){
-        $this->info[$cname]= call_user_func(array($cname, 'plInfo'));
-      }
-    }
-    
     // First load Menu Plugins 
     if(isset($this->config->data['MENU'])){
       foreach($this->config->data['MENU'] as $section => $plugins){
index e1a2954bb3d3b6d8162382a976bd2b8553a68c7b..36cad26d20b0a41c11096795ffed9b1fe30e7af3 100644 (file)
@@ -112,13 +112,19 @@ class tabs
 
   function execute()
   {
-    /* Ensure that the currently selected tab is valid. */
-    if(!isset($this->by_name[$this->current])) $this->current = key($this->by_name);
 
-    /* Rotate current to last */
+
+    echo "Do not render TABS while a sub-dialog is opened!<br>";
+
+    // Ensure that the currently selected tab is valid.
+    if(!isset($this->by_name[$this->current])) {
+      $this->current = key($this->by_name);
+    }
+
+    // Rotate current to last 
     $this->last= $this->current;
 
-    /* Look for pressed tab button */
+    // Look for pressed tab button
     foreach ($this->by_object as $class => &$obj){
       if (isset($_POST[$class]) || (isset($_POST['arg']) && $_POST['arg'] == "$class")){
         $this->current= $class;
@@ -126,32 +132,26 @@ class tabs
       }
     }
 
-    /* Save last tab object */
+    // Save last tab object 
     if ($this->last == $this->current){
       $this->save_object(TRUE);
     } else {
       $this->save_object(FALSE);
     }
 
-    /* Show object */
-    $display = "<table summary=\"\" cellpadding=4 cellspacing=0 border=0 style=\"width:100%; background-color:#F8F8F8; border-style:solid; border-color:#AAA; border-top-width:0px; border-bottom-width:1px; border-left-width:1px; border-right-width:1px;\">\n";
-    $display.= "<tr><td>\n";
-
     /* If multiple edit is enabled for this tab, 
        we have tho display different templates */
     if(!$this->multiple_support_active){
-      $display.= $this->by_object[$this->current]->execute();
+      $display= $this->by_object[$this->current]->execute();
     }else{
-      $display.= $this->by_object[$this->current]->multiple_execute();
+      $display= $this->by_object[$this->current]->multiple_execute();
     }
-    $modal_dialog = $this->by_object[$this->current]->is_modal_dialog();
-    
-    /* Build tab line */
-    $modal = TRUE;
-    $tabs= $this->gen_tabs($modal_dialog);
+    $tabs= $this->gen_tabs();
 
-    /* Footer for tabbed dialog */
-    $display = $tabs.$display."</td></tr></table>";
+    $display =          "{$tabs}
+                        <input type='hidden' name='arg' value=''>
+                          <div class='tab-content'>{$display}
+                        </div>";
 
     return ($display);
   }
@@ -190,65 +190,35 @@ class tabs
     }
   }
 
-  function gen_tabs($disabled = FALSE)
+  function gen_tabs()
   {
-    $display ="";
-    if(!$disabled){
-      $display.= "<input type=\"hidden\" name=\"arg\" value=\"\">";
-    }
-    $display.= "<table summary=\"\" cellpadding=0 cellspacing=0 border=0 style=\"width:100%;\"><tr>";
-    $index= 0;
-    $style= array("tab_left", "tab_active", "tab_near_active", "tab_right");
-    foreach ($this->by_name as $class => $name){
+    $display = "\n  <div class='tabs'>";
+    $display.= "\n    <ul>";
 
-      /* Activate right tabs with style "tab_right"
-         Activate near current with style "tab_near_active" */
-      if ($index == 2 || $index == 1){
-        $index++;
-      }
 
-      /* Activate current tab with style "tab_active " */
-      if ($class == $this->current){
-        $index++;
-      }
-
-      /* Paint tab */
-      $display.= "<td style=\"vertical-align:bottom;width:1px;white-space:nowrap;\">";
+    foreach ($this->by_name as $class => $name){
 
-      /* Shorten string if its too long for the tab headers*/
+      // Shorten string if its too long for the tab headers
       $title= _($name);
       if (mb_strlen($title, 'UTF-8') > 28){
         $title= mb_substr($title,0, 25, 'UTF-8')."...";
       }
 
-      /* nobr causes w3c warnings so we use &nbsp; to keep the tab name in one line */
+      // nobr causes w3c warnings so we use &nbsp; to keep the tab name in one line 
       $title= str_replace(" ","&nbsp;",$title);
 
-      /* Take care about notifications */
+      // Take care about notifications 
       $obj = $this->by_object[$class];
+      $notify ="";
       if ( $this->by_object[$class]->pl_notify && ($obj->is_account || $obj->ignore_account)){
-        $notify= "id=\"notify\"";
-      } else {
-        $notify= "";
-      }
-
-      if($disabled){
-        $display.= "<div ".$notify." class=\"$style[$index]\" 
-          style=' font-family:arial,helvetica,sans-serif;
-                  font-weight:bold;
-                  font-size:13px; 
-                  color: gray;'
-          title=\"$title\">".$title."</div>";
-      }elseif (session::global_get('js')==FALSE){      
-        $display.= "<div ".$notify." class=\"$style[$index]\"><input type=\"submit\" name=\"$class\"".
-          " class=\"$style[$index]\" value=\"$title\"></div></td>";
-      } else {                  
-        $display.= "<div ".$notify." class=\"$style[$index]\"><a class=\"$style[$index]\" onclick=\"return true;\" href=\"javascript:document.mainform.arg.value='$class';document.mainform.submit();\">$title</a></div></td>";
+        $notify= "!";
       }
+      $tabClass = ($this->current == $class) ? "class='current'" :"";
+      $onClick = "document.mainform.arg.value='{$class}'; document.mainform.submit();";
+      $display.= "<li {$tabClass} onClick=\"{$onClick}\"><a href='#'>$title{$notify}</a></li>";
     }
-    $display.= "<td style=\"vertical-align:bottom;\">\n";
-    $display.= "<div class=\"tab_border\">&nbsp;</div></td></tr></table>";
-
+    $display.="\n    </ul>";
+    $display.="\n  </div>";
     return($display);
   }