Code

Removed plugin stuff from the Snapshot handler
[gosa.git] / gosa-core / include / class_tabs.inc
index 71499f098a10f31bc988f7300fba1fac91b74667..6d1b5e871781daf574a885a21751473dd6e8ffe6 100644 (file)
@@ -37,6 +37,8 @@ class tabs
   var $acl_category; 
   var $multiple_support_active = FALSE;
 
+  var $parent = null; // A parent object if available, e.g. a management class.
+
   var $read_only = FALSE; // Used when the entry is opened as "readonly" due to locks.
   var $hide_refs = FALSE;
   var $hide_acls = FALSE;
@@ -52,7 +54,7 @@ class tabs
     if(!count($data)) {
       $data[] = array("CLASS" => 'plugin',"NAME" => 'Error');
       msg_dialog::display(_("Error"),
-        sprintf(_("No plugin definitions found to initialize '%s', please check your configuration file."),get_class($this)),
+        sprintf(_("No plugin definition for %s found: please check the configuration file!"), bold(get_class($this))),
         "ERROR_DIALOG");
     }
 
@@ -61,8 +63,10 @@ class tabs
     foreach ($data as &$tab){
 
       if (!plugin_available($tab['CLASS'])){
+        trigger_error(sprintf("Unknown class %s!", bold($tab['CLASS'])));
        continue;
       }
+      if ($this->current == "")  $this->current= $tab['CLASS'];
 
       $this->by_name[$tab['CLASS']]= $tab['NAME'];
 
@@ -77,11 +81,6 @@ class tabs
       $this->read_only |= $this->by_object[$tab['CLASS']]->read_only;
       $this->by_object[$tab['CLASS']]->parent= &$this;
       $this->by_object[$tab['CLASS']]->set_acl_category($this->acl_category);
-
-      /* Initialize current */
-      if ($this->current == ""){
-        $this->current= $tab['CLASS'];
-      }
     }
   }
 
@@ -110,13 +109,17 @@ 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);
+    // 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 */
+    pathNavigator::registerPlugin($this);
+
+    // 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;
@@ -124,33 +127,36 @@ 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>";
+    if($this->is_modal_dialog()){
+        $display =   
+            "\n        <div class='plugin'>".
+            "\n          {$display}".
+            "\n        </div>";
+    }else{
 
+        $display =   
+            "\n        {$tabs}".
+            "\n        <input type='hidden' name='arg' value=''>".
+            "\n        <div class='tab-content'>".
+            "\n          {$display}".
+            "\n        </div>";
+    }
     return ($display);
   }
 
@@ -188,65 +194,42 @@ class tabs
     }
   }
 
-  function gen_tabs($disabled = FALSE)
+
+  function is_modal_dialog()
   {
-    $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){
+    return($this->by_object[$this->current]->is_modal_dialog());
+  }
 
-      /* Activate right tabs with style "tab_right"
-         Activate near current with style "tab_near_active" */
-      if ($index == 2 || $index == 1){
-        $index++;
-      }
+  function gen_tabs()
+  {
+    if($this->is_modal_dialog()) return("");
 
-      /* Activate current tab with style "tab_active " */
-      if ($class == $this->current){
-        $index++;
-      }
+    $display = "\n  <div class='tabs'>";
+    $display.= "\n    <ul>";
 
-      /* 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];
+      $tabClass = ($this->current == $class) ? "current" :"";
       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>";
+        $tabClass .= " info";
       }
+      if(!empty($tabClass)) $tabClass="class='{$tabClass}'";
+      $onClick = "document.mainform.arg.value='{$class}'; document.mainform.submit();";
+      $display.= "\n      <li {$tabClass} onClick=\"{$onClick}\">{$title}</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);
   }
 
@@ -263,7 +246,7 @@ class tabs
     foreach (array_reverse($this->by_object) as $key => $obj){
       $reason= $obj->allow_remove();
       if ($reason != ""){
-        msg_dialog::display(_("Warning"), sprintf(_("Delete process has been canceled by plugin '%s': %s"), $key, $reason), WARNING_DIALOG);
+        msg_dialog::display(_("Warning"), sprintf(_("Delete process has been canceled by plugin %s: %s"), bold($key), $reason), WARNING_DIALOG);
         return;
       }
     }
@@ -330,7 +313,7 @@ class tabs
 
       $obj->dn= $this->dn;
 
-      if(!$obj instanceof plugin){
+      if(!$obj instanceof plugin && !$obj instanceOf management){
         trigger_error("Something went wrong while saving ".$obj->dn.". Object class '".get_class($obj)."'.");
       }else{
 
@@ -384,7 +367,7 @@ class tabs
         }else{
           if(!empty($tmp['string'])){
             $ret .= $tmp['string'];
-            $ret .= "<p class='seperator'>&nbsp;</p>";
+            $ret .= "<hr>";
           }
         }
       }
@@ -404,6 +387,7 @@ class tabs
       $this->by_name['reference']= _("References");
       $this->by_object['reference']= new reference($this->config, $this->dn);
       $this->by_object['reference']->parent= &$this;
+      $this->by_object['reference']->set_acl_category($this->acl_category);
     }
   }
 
@@ -458,6 +442,14 @@ class tabs
     }
     return(TRUE);
   }
+
+  function setReadOnly($s = TRUE)
+  {
+    foreach($this->by_object as $name => $obj){
+      $this->by_object[$name]->read_only = $s;
+    }
+    $this->read_only = $s;
+  }
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>