summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2d0fd10)
raw | patch | inline | side by side (parent: 2d0fd10)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 4 Aug 2006 11:47:54 +0000 (11:47 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 4 Aug 2006 11:47:54 +0000 (11:47 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@4393 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/fai/class_faiSummaryTab.inc | patch | blob | history |
index 42783ab3662382fb50359698ed31fe324baa4cc3..3963f42cf1e210e2d496c437ad7a755ba7cf27f2 100644 (file)
/* Get Classes and release */
$this->Classes = $this->parent->by_object['faiProfile']->FAIclasses;
$str = preg_replace("/^.*ou=profiles,/","",$this->dn);
+
if(isset($tmp[$str])){
$this->Release = $tmp[$str];
}
}
- /* returns an array with all possibly release types */
- function getBranches($base = false,$prefix = "")
+ function getBranches()
{
- $ret = array("main"=>"/");
+ $dn = $this->config->current['BASE'];
$ldap = $this->config->get_ldap_link();
- $ldap->cd($this->config->current['BASE']);
- $ldap->search("(objectClass=FAIbranch)",array("dn","cn","ou"));
+ $ldap->cd($dn);
+ $ldap->search("(&(objectClass=organizationalUnit)(objectClass=FAIbranch))",array("ou","cn","dn"));
+ $ret = array("main"=>"/");
while($attrs = $ldap->fetch()){
- if((isset($attrs['ou']))&&($attrs['dn']!=$base)){
+ if(preg_match("/ou=fai,/",$attrs['dn'])){
$name = convert_department_dn(preg_replace("/,ou=fai,.*$/","",$attrs['dn']));
$ret[$attrs['dn']] = $name;
- $ret = array_merge($ret,$this->getBranches($attrs['dn'],$prefix.$attrs['ou'][0]."/"));
}
}
return($ret);