summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a656a20)
raw | patch | inline | side by side (parent: a656a20)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 Apr 2006 07:15:31 +0000 (07:15 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 Apr 2006 07:15:31 +0000 (07:15 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2966 594d385d-05f5-0310-b6e9-bd551577e9d8
include/class_plugin.inc | patch | blob | history | |
plugins/gofon/phoneaccount/class_phoneAccount.inc | patch | blob | history | |
plugins/personal/mail/class_mailAccount.inc | patch | blob | history |
index 4f927edf0ff8ebd873a8bfe01c6f4d8cb834f8bb..1e6b5ba215374a72be520cf78f83e245dbc945ff 100644 (file)
--- a/include/class_plugin.inc
+++ b/include/class_plugin.inc
}
function getCopyDialog(){
- return("");
+ return(array("string"=>"","status"=>""));
}
}
diff --git a/plugins/gofon/phoneaccount/class_phoneAccount.inc b/plugins/gofon/phoneaccount/class_phoneAccount.inc
index d2b869a22cf9b167fa4c36a84bd76dc44882729b..09bd576170f8d124e48ae41f5a28198de34da149 100644 (file)
$smarty->assign("goFonPIN",$this->goFonPIN);
$display= $smarty->fetch(get_template_path('paste_generic.tpl', TRUE, dirname(__FILE__)));
- return($display);
+ $ret =array();
+ $ret['string'] = $display;
+ $ret['status'] = "";
+ return($ret);
}
function saveCopyDialog()
diff --git a/plugins/personal/mail/class_mailAccount.inc b/plugins/personal/mail/class_mailAccount.inc
index 3273d571155e0fe201c5188527595fe041284ed6..5b892e79ca5762e94c947d9c8c83bfbf04da88be 100644 (file)
$smarty->assign("mail",$this->mail);
$smarty->assign("gosaMailAlternateAddress",$this->gosaMailAlternateAddress);
$smarty->assign("gosaMailForwardingAddress",$this->gosaMailForwardingAddress);
- return($smarty->fetch(get_template_path("copypaste.tpl",TRUE, dirname(__FILE__))));
+ $str = $smarty->fetch(get_template_path("copypaste.tpl",TRUE, dirname(__FILE__)));
+
+ $ret = array();
+ $ret['status'] = "";
+ $ret['string'] = $str;
+ return($ret);
}
function saveCopyDialog()