예제 #1
0
 /**
  * Delete plugin database table
  *
  * @param string $table_name - table to drop
  * @param string $msg - show "dropped" message or not
  */
 public function dropTable($table_name = '', $msg = true)
 {
     require_once LIBS . 'Maintenance.php';
     $maintenance = new Maintenance();
     $maintenance->dropTable($this, $table_name, $msg);
 }