Beispiel #1
0
 public function runGeneratorCommand($command)
 {
     ob_start();
     $Generator = new AkelosGenerator();
     $Generator->setFileOptions(array('base_path' => AK_FRAMEWORK_DIR));
     $Generator->runCommand($command);
     $result = ob_get_clean();
     //AK::trace($result);
     return $result;
 }