summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f9a11fa)
raw | patch | inline | side by side (parent: f9a11fa)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 14 Nov 2006 05:48:04 +0000 (05:48 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 14 Nov 2006 05:48:04 +0000 (05:48 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5091 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/personal/connectivity/class_connectivity.inc | patch | blob | history |
diff --git a/plugins/personal/connectivity/class_connectivity.inc b/plugins/personal/connectivity/class_connectivity.inc
index 22427cb5218e254a9b6bea01a25f03ca5ba7aa38..7d5d893752c7f5aa6e65bf63068688433c41750c 100644 (file)
return ($message);
}
+ function set_acl_category($cat)
+ {
+ plugin::set_acl_category($cat);
+ foreach ($this->plugin_name as $name){
+ $this->plugin[$name]->set_acl_category( $cat);
+ }
+ }
+
+ function set_acl_base($base)
+ {
+ plugin::set_acl_base($base);
+ foreach ($this->plugin_name as $name){
+ $this->plugin[$name]->set_acl_base( $base);
+ }
+ }
/* Save to LDAP */
function save()
/* Save objects */
foreach ($this->plugin_name as $name){
$this->plugin[$name]->dn= $this->dn;
+
if ($this->plugin[$name]->is_account){
$this->plugin[$name]->save();
} else {