rhymix/modules/install/install.class.php
2023-01-30 21:43:21 +09:00

42 lines
680 B
PHP

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