mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9408 201d5d3c-b55e-5fd7-737f-ddc643e51545
39 lines
816 B
PHP
39 lines
816 B
PHP
<?php
|
|
/**
|
|
* @class admin
|
|
* @author NHN (developers@xpressengine.com)
|
|
* @brief base class of admin module
|
|
**/
|
|
|
|
class adminlogging extends ModuleObject {
|
|
/**
|
|
* @brief install admin module
|
|
* @return new Object
|
|
**/
|
|
function moduleInstall() {
|
|
return new Object();
|
|
}
|
|
|
|
/**
|
|
* @brief if update is necessary it returns true
|
|
**/
|
|
function checkUpdate() {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @brief update module
|
|
* @return new Object
|
|
**/
|
|
function moduleUpdate() {
|
|
return new Object();
|
|
}
|
|
|
|
/**
|
|
* @brief regenerate cache file
|
|
* @return none
|
|
**/
|
|
function recompileCache() {
|
|
}
|
|
}
|
|
?>
|