/**
  * put your comment there...
  * 
  */
 public function database()
 {
     // Install Database structure!
     cssJSToolbox::import('framework:installer:dbfile.class.php');
     CJTDBFileInstaller::getInstance(cssJSToolbox::resolvePath('includes:installer:installer:db:mysql:structure.sql'))->exec();
     return $this;
 }
 /**
  * put your comment there...
  * 
  */
 public function database()
 {
     // Upgrade database tables.
     cssJSToolbox::import('framework:installer:dbfile.class.php');
     CJTDBFileInstaller::getInstance(cssJSToolbox::resolvePath('includes:installer:upgrade:1.1:db:mysql:structure.sql'))->exec();
     // Chaining.
     return $this;
 }
 /**
  * put your comment there...
  * 
  */
 public function database()
 {
     // This operation runs only if required.
     // @see 15 view operations file.
     cssJSToolbox::import('framework:installer:dbfile.class.php');
     CJTDBFileInstaller::getInstance(cssJSToolbox::resolvePath('includes:installer:upgrade:1.1-CE:db:mysql:structure.sql'))->exec();
     // Chaining.
     return $this;
 }
Example #4
0
 /**
  * put your comment there...
  * 
  */
 public function database()
 {
     // Import dependencies.
     cssJsToolbox::import('framework:installer:dbfile.class.php');
     // Load Uninstallation SQL Statements!
     CJTDBFileInstaller::getInstance(cssJsToolbox::resolvePath('models:uninstall:db:mysql:uninstall.sql'))->exec();
     // Chaining!
     return $this;
 }