mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
47 lines
715 B
PHP
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 */
|