Ejemplo n.º 1
0
 /**
  * 
  * @param $path
  * @return Aitoc_Aitsys_Model_Module
  */
 protected function _makeModuleByInstallFile($path)
 {
     $module = new Aitoc_Aitsys_Model_Module();
     $module->loadByInstallFile(str_replace('.php', '.xml', $path));
     $this->tool()->testMsg(get_class($module->getLicense()));
     $this->tool()->event('aitsys_create_module_after', array('module' => $module));
     return $module;
 }