summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 290958f)
raw | patch | inline | side by side (parent: 290958f)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 10 Jul 2006 04:16:56 +0000 (04:16 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 10 Jul 2006 04:16:56 +0000 (04:16 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4054 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/fai/class_askClassName.inc | patch | blob | history |
index 651957f2d7f48cc04d2cf830758475f26ae31f94..c45d9996d9942dbc4e6437164ab87df35e361605 100644 (file)
}
$ldap = $this->config->get_ldap_link();
- /* Set base to release base */
- $base = key(get_previous_releases_of_this_release(get_release_dn($base),false));
-
- $res= get_list("(objectClass=organizationalUnit)", $this->ui->subtreeACL, $base,
- array("cn","description","objectClass"), GL_SIZELIMIT);
- $used = array();
+ $res= get_list("(&(objectClass=organizationalUnit)(!(objectClass=FAIbranch)))", $this->ui->subtreeACL, $base,
+ array("cn","description","objectClass"), GL_SIZELIMIT );
$delete = array();
+ $used = array();
foreach($res as $objecttypes){
$res2= get_list("(objectClass=*)", $this->ui->subtreeACL, $objecttypes['dn'],
- array("cn","description","objectClass","FAIclass"), GL_SIZELIMIT | GL_CONVERT | GL_SUBSEARCH);
-
+ array("cn","description","objectClass","FAIclass","FAIstate"), GL_SIZELIMIT | GL_CONVERT );
foreach($res2 as $object){
+
/* skip class names with this name */
if(in_array($this->objectClass,$object['objectClass'])){
+ if(isset($object['FAIstate'][0]) && preg_match("/removed$/",$object['FAIstate'][0])){
+ continue;
+ }
$delete[] = $object['cn'][0];
}