rhymix/modules/layout/layout.class.php
2023-10-02 22:55:41 +09:00

47 lines
715 B
PHP

<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class layout
* @author NAVER (developers@xpressengine.com)
* high class of the layout module
*/
class Layout extends ModuleObject
{
/**
* Implement if additional tasks are necessary when installing
* @return Object
*/
function moduleInstall()
{
}
/**
* a method to check if successfully installed
* @return boolean
*/
function checkUpdate()
{
return false;
}
/**
* Execute update
* @return Object
*/
function moduleUpdate()
{
}
/**
* Re-generate the cache file
* @return void
*/
function recompileCache()
{
}
}
/* End of file layout.class.php */
/* Location: ./modules/layout/layout.class.php */