Example #1
0
 function getList($path, $depth = null)
 {
     $dir = $this->basePath . '/' . $path;
     $list = File::tree($dir, $depth, array('.svn'));
     Arrays::unsetByValuer($list, array('_meta.txt'));
     Arrays::unsetByKey($list, array('_inc'));
     return $list;
 }