summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7bdee58)
raw | patch | inline | side by side (parent: 7bdee58)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 17 Apr 2008 11:57:27 +0000 (11:57 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 17 Apr 2008 11:57:27 +0000 (11:57 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10535 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/groups/apps/class_groupApplication.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/groups/apps/class_groupApplication.inc b/gosa-plugins/goto/admin/groups/apps/class_groupApplication.inc
index 29a6d540fa80ab2627a8b1f0c07a37ca2af47814..13373eb8172d59879e0095a70cb28e7282447d1c 100644 (file)
function check()
{
+ $message = plugin::check();
+ return($message);
}
}
}
}
+
if($entry['STATUS'] == "LOADED"){
continue;
}
}
+ print_a($Actions);
+
$ldap = $this->config->get_ldap_link();
$ldap->cd($this->config->current['BASE']);
foreach($Actions['Remove'] as $dn){
function PrepareForCopyPaste($source)
{
+ plugin::PrepareForCopyPaste($source);
+
+ $tmp = new appgroup($this->config,$source['dn']);
+ $this->is_account = TRUE;
+ $this->a_Structure = $tmp->a_Structure;
+ $all = $this->_get_all_entries();
+ foreach($all as &$entry){
+ if(isset($entry['STATUS'])){
+ $entry['STATUS'] = "ADDED";
+ }
+ }
}