Files
Chamilo/plugin/vchamilo/uninstall.php
2025-04-10 12:36:07 +02:00

10 lines
185 B
PHP

<?php
/* PHP code to uninstall the plugin */
api_protect_admin_script();
$table = Database::get_main_table('vchamilo');
$sql = " DROP TABLE IF EXISTS $table";
Database::query($sql);