mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4616 201d5d3c-b55e-5fd7-737f-ddc643e51545
31 lines
828 B
PHP
31 lines
828 B
PHP
<?php
|
|
/**
|
|
* @class adminAdminController
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief admin 모듈의 admin controller class
|
|
**/
|
|
|
|
class adminAdminController extends admin {
|
|
/**
|
|
* @brief 초기화
|
|
**/
|
|
function init() {
|
|
}
|
|
|
|
/**
|
|
* @brief 모든 캐시 파일 재생성
|
|
**/
|
|
function procAdminRecompileCacheFile() {
|
|
$oModuleModel = &getModel('module');
|
|
$module_list = $oModuleModel->getModuleList();
|
|
|
|
foreach($module_list as $module) {
|
|
$oModule = null;
|
|
$oModule = &getClass($module->module);
|
|
if(method_exists($oModule, 'recompileCache')) $oModule->recompileCache();
|
|
}
|
|
|
|
$this->setMessage('success_updated');
|
|
}
|
|
}
|
|
?>
|