From 0998bc227b3037c4f3f79ef60aa34e3811b853a3 Mon Sep 17 00:00:00 2001 From: hickert Date: Thu, 6 May 2010 10:26:35 +0000 Subject: [PATCH] Updated property editor. -Value are only temporary modified since saved - else we affect the running gosa instance git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18179 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_configRegistry.inc | 23 ++++++++++++------- .../configViewer/class_filterProperties.inc | 2 +- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/gosa-core/include/class_configRegistry.inc b/gosa-core/include/class_configRegistry.inc index c60767f10..22e3e16c2 100644 --- a/gosa-core/include/class_configRegistry.inc +++ b/gosa-core/include/class_configRegistry.inc @@ -177,6 +177,7 @@ class gosaProperty protected $name = ""; protected $class = ""; protected $value = ""; + protected $tmp_value = ""; // Used when modified but not saved protected $type = "string"; protected $default = ""; protected $defaults = ""; @@ -275,7 +276,6 @@ class gosaProperty } } - function getValue() { return($this->value); } function getMigrate() { return($this->migrate); } function getCheck() { return($this->check); } function getName() { return($this->name); } @@ -292,7 +292,16 @@ class gosaProperty { if($this->value != $str){ $this->setStatus('modified'); - $this->value = $str; + $this->tmp_value = $str; + } + } + + function getValue($temporary = FALSE) + { + if($temporary && in_array($this->getStatus(), array('modified'))){ + return($this->tmp_value); + }else{ + return($this->value); } } @@ -308,7 +317,6 @@ class gosaProperty function save() { if($this->getStatus() == 'modified'){ - $ldap = $this->parent->config->get_ldap_link(); $ldap->cd($this->parent->config->current['BASE']); $dn = "cn={$this->class},".$this->parent->config->current['CONFIG']; @@ -318,13 +326,12 @@ class gosaProperty $data = array( 'cn' => $this->class, 'objectClass' => array('top','gosaConfig'), - 'gosaSetting' => $this->name.":".$this->value); + 'gosaSetting' => $this->name.":".$this->tmp_value); $ldap->add($data); if(!$ldap->success()){ echo $ldap->get_error(); } - $this->_restoreCurrentValue(); }else{ $attrs = $ldap->fetch(); @@ -333,19 +340,19 @@ class gosaProperty for($i = 0;$i<$attrs['gosaSetting']['count']; $i ++){ $set = $attrs['gosaSetting'][$i]; if(preg_match("/^{$this->name}:/", $set)){ - $set = "{$this->name}:{$this->value}"; + $set = "{$this->name}:{$this->tmp_value}"; $found = true; } $data['gosaSetting'][] = $set; } - if(!$found) $data['gosaSetting'][] = "{$this->name}:{$this->value}"; + if(!$found) $data['gosaSetting'][] = "{$this->name}:{$this->tmp_value}"; $ldap->cd($dn); $ldap->modify($data); if(!$ldap->success()){ echo $ldap->get_error(); } - $this->_restoreCurrentValue(); } + $this->_restoreCurrentValue(); }elseif($this->getStatus() == 'removed'){ $ldap = $this->parent->config->get_ldap_link(); $ldap->cd($this->parent->config->current['BASE']); diff --git a/gosa-core/plugins/addons/configViewer/class_filterProperties.inc b/gosa-core/plugins/addons/configViewer/class_filterProperties.inc index 136eb07a4..15ac1aa5d 100644 --- a/gosa-core/plugins/addons/configViewer/class_filterProperties.inc +++ b/gosa-core/plugins/addons/configViewer/class_filterProperties.inc @@ -15,7 +15,7 @@ class filterCONFIGPROPERTIES { $entry = filterCONFIGPROPERTIES::fakeLdapResult($entry, 'objectClass', $property->getStatus()); $entry = filterCONFIGPROPERTIES::fakeLdapResult($entry, 'status', $property->getStatus()); $entry = filterCONFIGPROPERTIES::fakeLdapResult($entry, 'description', $property->getDescription()); - $entry = filterCONFIGPROPERTIES::fakeLdapResult($entry, 'value', $property->getValue()); + $entry = filterCONFIGPROPERTIES::fakeLdapResult($entry, 'value', $property->getValue($temporary = TRUE)); $entry = filterCONFIGPROPERTIES::fakeLdapResult($entry, 'default', $property->getDefault()); $entry = filterCONFIGPROPERTIES::fakeLdapResult($entry, 'defaults', $property->getDefaults()); $entry = filterCONFIGPROPERTIES::fakeLdapResult($entry, 'check', $property->getCheck()); -- 2.30.2