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