mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-20 11:49:56 +09:00
tool 기능을 개선하여 전체 tool관리 가능하도록 변경(주소/tools 로 접속하여 선택). 빈 디렉토리 삭제 기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4378 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b206a07524
commit
0fddaf252f
12 changed files with 196 additions and 340 deletions
17
tools/cache_cleaner/cache_cleaner.php
Normal file
17
tools/cache_cleaner/cache_cleaner.php
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* @file tools/clear_cache.php
|
||||
* @author zero <zero@zeroboard.com>
|
||||
* @brief XE 캐시파일 및 불필요한 파일 정리
|
||||
**/
|
||||
|
||||
// 인증이 되지 않은 접근이면 종료
|
||||
if(!defined('__XE_TOOL_AUTH__') || !__XE_TOOL_AUTH__) exit();
|
||||
|
||||
// 캐시 파일 제거
|
||||
$oAdminController = &getAdminController('admin');
|
||||
$oAdminController->procAdminRecompileCacheFile();
|
||||
$output = Context::getLang('success_reset');
|
||||
|
||||
Context::set('output', $output);
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue