X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_tabs.inc;h=6d1b5e871781daf574a885a21751473dd6e8ffe6;hb=928e5d63d17e08ba4b364838c75509d454d4fa74;hp=e05e60c516aaedae9b247bbf93a63603d4fbea7a;hpb=d6fcd59c19ce065219963c5638a57e3e0277a5a1;p=gosa.git diff --git a/gosa-core/include/class_tabs.inc b/gosa-core/include/class_tabs.inc index e05e60c51..6d1b5e871 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 definition for %s found: please check the configuration file!"), bold(get_class($this))), + "ERROR_DIALOG"); + } $baseobject= NULL; - + $this->acl_category = $acl_category; 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']; @@ -59,23 +78,48 @@ 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 == ""){ - $this->current= $tab['CLASS']; + + /*! \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() { - /* Rotate current to last */ + // Ensure that the currently selected tab is valid. + if(!isset($this->by_name[$this->current])) { + $this->current = key($this->by_name); + } + + 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; @@ -83,31 +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); } - /* Build tab line */ - $display= $this->gen_tabs(); - - /* Show object */ - $display.= "\n"; - $display.= "
\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(); } + $tabs= $this->gen_tabs(); - /* Footer for tabbed dialog */ - $display.= "
"; + if($this->is_modal_dialog()){ + $display = + "\n
". + "\n {$display}". + "\n
"; + }else{ + $display = + "\n {$tabs}". + "\n ". + "\n
". + "\n {$display}". + "\n
"; + } return ($display); } @@ -145,56 +194,42 @@ class tabs } } - function gen_tabs() + + function is_modal_dialog() { - $display= ""; - $display.= ""; - $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
"; + $display.= "\n
"; + 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   to keep the tab name in one line */ - $title= preg_replace("/ /"," ",$title); + // nobr causes w3c warnings so we use   to keep the tab name in one line + $title= str_replace(" "," ",$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 (session::get('js')==FALSE){ - $display.= "\n"; - $display.= "
 
"; - + $display.="\n "; + $display.="\n "; return($display); } @@ -211,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; } } @@ -278,24 +313,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 && !$obj instanceOf management){ + 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); } } @@ -327,7 +367,7 @@ class tabs }else{ if(!empty($tmp['string'])){ $ret .= $tmp['string']; - $ret .= "

 

"; + $ret .= "
"; } } } @@ -338,12 +378,17 @@ 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; + $this->by_object['reference']->set_acl_category($this->acl_category); + } } @@ -397,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: ?>