mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 23:31:44 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
30 lines
629 B
PHP
30 lines
629 B
PHP
<?php
|
|
/**
|
|
* @class wiki
|
|
* @author haneul (haneul0318@gmail.com)
|
|
* @brief wiki 모듈의 high class
|
|
**/
|
|
|
|
class wiki extends ModuleObject {
|
|
function moduleInstall() {
|
|
return new Object();
|
|
}
|
|
|
|
/**
|
|
* @brief 설치가 이상이 없는지 체크하는 method
|
|
**/
|
|
function checkUpdate() {
|
|
return false;
|
|
}
|
|
|
|
function moduleUpdate() {
|
|
return new Object(0, 'success_updated');
|
|
}
|
|
|
|
/**
|
|
* @brief 캐시 파일 재생성
|
|
**/
|
|
function recompileCache() {
|
|
}
|
|
}
|
|
?>
|