Code

Fixed creation if departments (organizationalUnit)
[gosa.git] / gosa-core / include / class_tabs.inc
index d11d24b42772182cda822e5dec514d851b98f4d5..71499f098a10f31bc988f7300fba1fac91b74667 100644 (file)
@@ -34,17 +34,30 @@ class tabs
   var $by_name= array();
   var $by_object= array();
   var $SubDialog = false;
-
+  var $acl_category; 
   var $multiple_support_active = FALSE;
 
-  function tabs(&$config, $data, $dn, $acl_category= "")
+  var $read_only = FALSE; // Used when the entry is opened as "readonly" due to locks.
+  var $hide_refs = FALSE;
+  var $hide_acls = FALSE;
+  
+  function tabs(&$config, $data, $dn, $acl_category= "", $hide_refs = FALSE, $hide_acls = FALSE)
   {
     /* Save dn */
     $this->dn= $dn;
     $this->config= &$config;
+    $this->hide_refs = $hide_refs;
+    $this->hide_acls = $hide_acls;
+
+    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)),
+        "ERROR_DIALOG");
+    }
 
     $baseobject= NULL;
-
+    $this->acl_category = $acl_category;
     foreach ($data as &$tab){
 
       if (!plugin_available($tab['CLASS'])){
@@ -61,8 +74,9 @@ class tabs
         $this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $baseobject);
       }
 
+      $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($acl_category);
+      $this->by_object[$tab['CLASS']]->set_acl_category($this->acl_category);
 
       /* Initialize current */
       if ($this->current == ""){
@@ -71,9 +85,34 @@ class tabs
     }
   }
 
+  /*! \brief Reinitializes the tab classes with fresh ldap values.
+             This maybe usefull if for example the apply button was pressed.
+   */ 
+  function re_init()
+  {
+    $baseobject= NULL;
+    foreach($this->by_object as $name => $object){
+      $class = get_class($object);
+      if(in_array($class,array("reference","acl"))) continue;
+      if ($baseobject === NULL){
+        $baseobject= new $class($this->config, $this->dn);
+        $baseobject->enable_CSN_check();
+        $this->by_object[$name]= $baseobject;
+      } else {
+        $this->by_object[$name]= new $class($this->config, $this->dn, $baseobject);
+      }
+      $this->by_object[$name]->parent= &$this;
+      $this->by_object[$name]->set_acl_category($this->acl_category);
+    }
+  }
+
 
   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 */
     $this->last= $this->current;
 
@@ -92,11 +131,8 @@ class tabs
       $this->save_object(FALSE);
     }
 
-    /* Build tab line */
-    $display= $this->gen_tabs();
-
     /* 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 = "<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, 
@@ -106,9 +142,14 @@ class tabs
     }else{
       $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);
 
     /* Footer for tabbed dialog */
-    $display.= "</td></tr></table>";
+    $display = $tabs.$display."</td></tr></table>";
 
     return ($display);
   }
@@ -147,9 +188,12 @@ class tabs
     }
   }
 
-  function gen_tabs()
+  function gen_tabs($disabled = FALSE)
   {
-    $display= "<input type=\"hidden\" name=\"arg\" value=\"\">";
+    $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");
@@ -176,7 +220,7 @@ class tabs
       }
 
       /* nobr causes w3c warnings so we use &nbsp; to keep the tab name in one line */
-      $title= preg_replace("/ /","&nbsp;",$title);
+      $title= str_replace(" ","&nbsp;",$title);
 
       /* Take care about notifications */
       $obj = $this->by_object[$class];
@@ -186,13 +230,19 @@ class tabs
         $notify= "";
       }
 
-      if (session::get('js')==FALSE){  
+      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\"";
+          " 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";
+        $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>";
       }
-      $display.= "></div></td>";
     }
     $display.= "<td style=\"vertical-align:bottom;\">\n";
     $display.= "<div class=\"tab_border\">&nbsp;</div></td></tr></table>";
@@ -280,12 +330,17 @@ class tabs
 
       $obj->dn= $this->dn;
 
-      if ($obj->is_account || $ignore_account || $obj->ignore_account){
-        if ($obj->save() == 1){
-          return (1);
+      if(!$obj instanceof plugin){
+        trigger_error("Something went wrong while saving ".$obj->dn.". Object class '".get_class($obj)."'.");
+      }else{
+
+        if ($obj->is_account || $ignore_account || $obj->ignore_account){
+          if ($obj->save() == 1){
+            return (1);
+          }
+        } else {
+          $obj->remove_from_parent();
         }
-      } else {
-        $obj->remove_from_parent();
       }
     }
     return (0);
@@ -340,12 +395,16 @@ class tabs
 
   function addSpecialTabs()
   {
-    $this->by_name['acl']= _("ACL");
-    $this->by_object['acl']= new acl($this->config, $this, $this->dn);
-    $this->by_object['acl']->parent= &$this;
-    $this->by_name['reference']= _("References");
-    $this->by_object['reference']= new reference($this->config, $this->dn);
-    $this->by_object['reference']->parent= &$this;
+    if(!$this->hide_acls){
+      $this->by_name['acl']= _("ACL");
+      $this->by_object['acl']= new acl($this->config, $this, $this->dn);
+      $this->by_object['acl']->parent= &$this;
+    }
+    if(!$this->hide_refs){
+      $this->by_name['reference']= _("References");
+      $this->by_object['reference']= new reference($this->config, $this->dn);
+      $this->by_object['reference']->parent= &$this;
+    }
   }