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