예제 #1
0
파일: editor.php 프로젝트: demental/m
 private function getStringsFromXML($file)
 {
     if (!file_exists($file)) {
         if (!touch($file)) {
             throw new Exception('Unable to create file ' . $file);
         }
     }
     return parent::getStringsFromXML($file);
 }