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