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