rhymix/modules/adminlogging/adminlogging.class.php
2013-11-08 05:52:51 +00:00

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 */