uninstall.php 185 B

12345678910
  1. <?php
  2. /* PHP code to uninstall the plugin */
  3. api_protect_admin_script();
  4. $table = Database::get_main_table('vchamilo');
  5. $sql = " DROP TABLE IF EXISTS $table";
  6. Database::query($sql);