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@10782 201d5d3c-b55e-5fd7-737f-ddc643e51545
42 lines
754 B
PHP
42 lines
754 B
PHP
<?php
|
|
/**
|
|
* adminlogging class
|
|
* Base class of adminlogging module
|
|
*
|
|
* @author NHN (developers@xpressengine.com)
|
|
* @package /modules/adminlogging
|
|
* @version 0.1
|
|
*/
|
|
class adminlogging extends ModuleObject {
|
|
/**
|
|
* Install adminlogging module
|
|
* @return Object
|
|
*/
|
|
function moduleInstall() {
|
|
return new Object();
|
|
}
|
|
|
|
/**
|
|
* If update is necessary it returns true
|
|
* @return bool
|
|
*/
|
|
function checkUpdate() {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Update module
|
|
* @return Object
|
|
*/
|
|
function moduleUpdate() {
|
|
return new Object();
|
|
}
|
|
|
|
/**
|
|
* Regenerate cache file
|
|
* @return void
|
|
*/
|
|
function recompileCache() {
|
|
}
|
|
}
|
|
?>
|