예제 #1
0
파일: games.php 프로젝트: DINKIN/rokket
 public static function getAll()
 {
     $handle = opendir(dir::games(''));
     while ($file = readdir($handle)) {
         if (in_array($file, ['.', '..'])) {
             continue;
         }
         self::$games[] = self::getConfig($file);
     }
     return self::$games;
 }