예제 #1
0
파일: v.php 프로젝트: rigidus/ea
 function show($name = 'ERRORS')
 {
     $show = '';
     if (self::$errors) {
         errors::set(self::$errors);
         errors::show($name);
         return false;
     } else {
         return true;
     }
 }