mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13186 201d5d3c-b55e-5fd7-737f-ddc643e51545
53 lines
801 B
PHP
53 lines
801 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
/**
|
|
* adminlogging class
|
|
* Base class of adminlogging module
|
|
*
|
|
* @author NAVER (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()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
/* End of file adminlogging.class.php */
|
|
/* Location: ./modules/adminlogging/adminlogging.class.php */
|