summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a137239)
raw | patch | inline | side by side (parent: a137239)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 9 Aug 2005 07:08:21 +0000 (07:08 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 9 Aug 2005 07:08:21 +0000 (07:08 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1083 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/gofon/phoneaccount/class_phoneAccount.inc | patch | blob | history |
diff --git a/plugins/gofon/phoneaccount/class_phoneAccount.inc b/plugins/gofon/phoneaccount/class_phoneAccount.inc
index 5fd9f63a2bd2bd988e87799f17eecc7fa0245876..4dacfe3ca8f44c74a2567d6d8fe071c8317a6e89 100644 (file)
$this->macrostillavailable=true;
}
+ if(is_array($this->phoneNumbers)){
+ foreach($this->phoneNumbers as $telenumms) {
+ $nummsinorder[]=$telenumms;
+ }
+ }else{
+ $nummsinorder=array("");
+ }
/* get all Postvars */
if(isset($this->macroarray[$this->macro])){
foreach($this->macroarray[$this->macro] as $key => $paras){
if(isset($_POST[$paras['var']])){
- $this->macroarray[$this->macro][$key]['choosen'] = $_POST[$paras['var']];
+ $par = $this->macroarray[$this->macro][$key];
+ $string = "";
+ if(preg_match("/.*%telephoneNumber_.*/",$par['default'])){
+ $string = $par['default'];
+ foreach($nummsinorder as $nummsinorderkey=> $nummsinorderval){
+ $string = (str_replace("%telephoneNumber_".($nummsinorderkey+1),$nummsinorderval,$string));
+ }
+ }
+
+ if(preg_match("/.*%uid.*/",$par['default'])){
+ if(empty($string)) $string = $par['default'];
+ $string = str_replace("%uid",$this->uid,$string);
+ }
+
+ if(!empty($string)){
+ $this->macroarray[$this->macro][$key]['choosen'] = $string;
+ }else{
+ $this->macroarray[$this->macro][$key]['choosen'] = $_POST[$paras['var']];
+ }
}
/* Checkboxes are special, they are not Posted if they are not selected, so the won't be changed with the above code