Beispiel #1
0
 function getDirList($dir)
 {
     $this->folders = $this->getFolderArray($dir);
     $this->files = $this->getFilesArray($dir);
     $out = new FNOutput();
     $out->html .= $out->folderList($this->folders);
     $out->html .= $out->fileList($this->files);
     $out->sendOutput();
 }