X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_tabs.inc;h=71499f098a10f31bc988f7300fba1fac91b74667;hb=f26f21eeaa557b93458cb63c77bf61d3837b8ac9;hp=4d5c69512fb5e7abb48a9cbd389b5dcdf97d06d5;hpb=ede91cea993d38464d47f6ef573ed70ce2cec357;p=gosa.git diff --git a/gosa-core/include/class_tabs.inc b/gosa-core/include/class_tabs.inc index 4d5c69512..71499f098 100644 --- a/gosa-core/include/class_tabs.inc +++ b/gosa-core/include/class_tabs.inc @@ -1,22 +1,24 @@ 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'])){ + continue; + } + $this->by_name[$tab['CLASS']]= $tab['NAME']; if ($baseobject === NULL){ @@ -54,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 == ""){ @@ -64,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; @@ -85,11 +131,8 @@ class tabs $this->save_object(FALSE); } - /* Build tab line */ - $display= $this->gen_tabs(); - /* Show object */ - $display.= "\n"; + $display = "
\n"; $display.= "
\n"; /* If multiple edit is enabled for this tab, @@ -99,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.= "
"; + $display = $tabs.$display.""; return ($display); } @@ -140,9 +188,12 @@ class tabs } } - function gen_tabs() + function gen_tabs($disabled = FALSE) { - $display= ""; + $display =""; + if(!$disabled){ + $display.= ""; + } $display.= ""; $index= 0; $style= array("tab_left", "tab_active", "tab_near_active", "tab_right"); @@ -169,7 +220,7 @@ class tabs } /* nobr causes w3c warnings so we use   to keep the tab name in one line */ - $title= preg_replace("/ /"," ",$title); + $title= str_replace(" "," ",$title); /* Take care about notifications */ $obj = $this->by_object[$class]; @@ -179,13 +230,19 @@ class tabs $notify= ""; } - if (session::get('js')==FALSE){ + if($disabled){ + $display.= "
".$title."
"; + }elseif (session::global_get('js')==FALSE){ $display.= "
"; } else { - $display.= "
$title$title
"; } - $display.= ">"; } $display.= "
\n"; $display.= "
 
"; @@ -206,7 +263,7 @@ class tabs foreach (array_reverse($this->by_object) as $key => $obj){ $reason= $obj->allow_remove(); if ($reason != ""){ - print_red(sprintf(_("Delete process has been canceled by plugin '%s': %s"), $key, $reason)); + msg_dialog::display(_("Warning"), sprintf(_("Delete process has been canceled by plugin '%s': %s"), $key, $reason), WARNING_DIALOG); return; } } @@ -273,24 +330,29 @@ 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); } - function adapt_from_template($dn) + function adapt_from_template($dn, $skip= array()) { foreach ($this->by_object as $key => &$obj){ @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $key, "Adapting"); $obj->parent= &$this; - $obj->adapt_from_template($dn); + $obj->adapt_from_template($dn, $skip); } } @@ -333,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; + } }