rhymix/modules/adminlogging/adminlogging.class.php
ngleader dbc18a4f99 change author
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13180 201d5d3c-b55e-5fd7-737f-ddc643e51545
2013-11-07 02:42:42 +00:00

52 lines
748 B
PHP

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