*/ /** * High class of counter module * * @author NAVER (developers@xpressengine.com) */ class counter extends ModuleObject { /** * Implement if additional tasks are necessary when installing * @return Object */ function moduleInstall() { } /** * method if successfully installed * * @return bool */ function checkUpdate() { return FALSE; } /** * Module update * * @return Object */ function moduleUpdate() { } /** * re-generate the cache file * * @return Object */ function recompileCache() { } } /* End of file counter.class.php */ /* Location: ./modules/counter/counter.class.php */