showList(); } //DB_DataObject::debuglevel(1); $this->matching = new DataObjects_Matching; $this->matching->get('cn',$request); $this->matching->buildUsedBy(); // //echo "
";
// print_r($this->attribute);
}
var $attributes = array();
function showList() {
$this->template = 'ldap/matchingList.html';
$obj = new DataObjects_Matching;
$obj->selectAdd();
$obj->selectAdd("cn,description");
$obj->orderBy('cn');
$obj->find();
while($obj->fetch()) {
$this->matchings[] = clone($obj);
}
//echo "" ; print_r($this->attributes);
// $this->outputTree();
}
}
?>