Ejemplo n.º 1
0
 public static function requireAll($directory)
 {
     $root_path = Crave::getRootPath();
     $file_array = glob($root_path . '/' . $directory . '*.php');
     foreach ($file_array as $file_path) {
         include_once $file_path;
     }
 }