예제 #1
0
 /**
  * @access private
  * Installation des tables mysql du plugin
  */
 private function install_table()
 {
     if (parent::c_show_tables() == 0) {
         $this->getNotify('error');
     } else {
         return true;
     }
 }
예제 #2
0
 /**
  * @access private
  * Installation des tables mysql du plugin
  */
 private function install_table()
 {
     if (parent::c_show_tables() == 0) {
         $this->template->db_install_table('db.sql', 'request/install.tpl');
     } else {
         return true;
     }
 }
예제 #3
0
 /**
  * Checks if the tables of the plugins are installed
  * Indicate to the cartpay plugin if the plugin is already installed/active or not
  */
 public function c_active()
 {
     return parent::c_show_tables();
 }