XpressEngine Core  1.11.2
 All Classes Namespaces Files Functions Variables Pages
install.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) NAVER <http://www.navercorp.com> */
8 class install extends ModuleObject
9 {
13  function moduleInstall()
14  {
15  return new BaseObject();
16  }
17 
21  function checkUpdate()
22  {
23  return false;
24  }
25 
29  function moduleUpdate()
30  {
31  return new BaseObject();
32  }
33 
37  function recompileCache()
38  {
39  }
40 }
41 /* End of file install.class.php */
42 /* Location: ./modules/install/install.class.php */
recompileCache()
Re-generate the cache file.
moduleUpdate()
Execute update.
install module of the high class
moduleInstall()
Implement if additional tasks are necessary when installing.
checkUpdate()
a method to check if successfully installed