예제 #1
0
파일: Vault.php 프로젝트: sebcode/gsandbox
 public function getArchive($id)
 {
     $ret = new Archive($id, $this);
     if (!$ret->exists()) {
         return false;
     }
     return $ret;
 }