Example #1
0
 public function generate()
 {
     $dirPath = pathinfo($this->_filePath, PATHINFO_DIRNAME);
     if (!file_exists($dirPath)) {
         mkdir($dirPath, 0777);
     }
     if (!file_exists($dirPath . "/presentation")) {
         mkdir($dirPath . "/presentation", 0777);
     }
     parent::generate(false);
 }
 /**
  * Generate module
  */
 public function generate()
 {
     //		echo get_class($this)."::generate";
     return parent::generate();
 }