예제 #1
0
파일: Install.php 프로젝트: sinfocol/gwf3
 public function onInstallAll()
 {
     $back = '';
     $modules = GWF_ModuleLoader::loadModulesFS();
     foreach ($modules as $m) {
         $m instanceof GWF_Module;
         $back .= GWF_ModuleLoader::installModule($m, false);
     }
     GWF_ModuleLoader::installHTAccess($modules);
     return $this->module->message('msg_install_all', array($this->module->getMethodURL('Modules'))) . $back;
 }