예제 #1
0
파일: Xoops.php 프로젝트: elitet/XoopsCore
 /**
  * Clear the module cache
  *
  * @param int $mid Module ID
  *
  * @return void
  */
 public function templateClearModuleCache($mid)
 {
     $module = $this->getModuleById($mid);
     $xoopsTpl = new XoopsTpl();
     $xoopsTpl->clearModuleCompileCache($module->getVar('dirname'));
 }